-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumbers.html
77 lines (69 loc) · 1.54 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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="styles.css">
</head>
<body>
<img src="./images/logo.png" id="logo" alt="Coffee Logo">
<h1> Numbers </h1>
<!-- navbar -->
<ul>
<li>
<a href="index.html"> Home </a>
<li> <a href="about.html"> About </a> </li>
<li> <a href="numbers.html"> Numbers </a> </li>
<li> <a href="contact.html"> Contact </a> </li>
</li>
</ul>
<div class="background">
<img src="./images/background.jpeg" alt="">
</div>
<h2> Our Stores </h2>
<br>
<table>
<!-- city -->
<tr>
<th>
City
</th>
<th> Chicago </th>
<th> New York </th>
<th> Los Angeles </th>
</tr>
<!-- end of city -->
<!-- orders -->
<tr>
<td> Orders </td>
<td> 125 </td>
<td> 250 </td>
<td> 500 </td>
</tr>
<!-- end of orders -->
<!-- profit -->
<tr>
<td> Profit </td>
<td> $10,000 </td>
<td> $20,000 </td>
<td> $30,000 </td>
</tr>
</table>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div>
copyright © 2021
<p>
<a href="#logo"> Back To Top </a>
</p>
</div>
</body>
</html>