-
Notifications
You must be signed in to change notification settings - Fork 0
/
numbers.html
52 lines (49 loc) · 1.4 KB
/
numbers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Numbers</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<img src="./images/logo.png" id="logo" alt="Coffee logo" />
<h1>Numbers</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="numbers.html">Numbers</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<img src="./images/background.jpeg" alt="Coffee beans" width="100%" />
<br />
<h2>Our Stores</h2>
<br />
<table style="border: 2px solid black; border-spacing: 25px">
<tr>
<th>City</th>
<th>Chicago</th>
<th>New York</th>
<th>Los Angeles</th>
</tr>
<tr>
<td>Orders</td>
<td>125</td>
<td>250</td>
<td>500</td>
</tr>
<tr>
<td>Profits</td>
<td><strong>$</strong>10,000</td>
<td><strong>$</strong>20,000</td>
<td><strong>$</strong>30,000</td>
</tr>
</table>
<br /><br /><br /><br /><br /><br /><br />
<p>Copyright © CEN-Smart & Dotun</p>
<h3>
<a href="#logo">Bact to top</a>
</h3>
</body>
</html>