-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumbers.html
53 lines (53 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Numbers</title>
</head>
<body>
<img src="./Images/CoffeeJunkies Logo.png" alt="Coffee Junkie" id="logo" />
<h3>Coffee Junkie</h3>
<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 />
<h1>Our Stores</h1>
<br />
<table style="border: 2px solid black; border-spacing: 25px;">
Adding CSS NEXT
<!-- city -->
<tr>
<th>Cities</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>50</td>
<td>500</td>
</tr>
<!-- end of orders -->
<!-- profit -->
<tr>
<td>Profit</td>
<td>$10,000</td>
<td>$20,000</td>
<td>$80,000</td>
</tr>
<!-- end of profit -->
</table>
<br />
<br />
<p>Copyright©2019</p>
<h3><a href="#logo">Back To Top</a></h3>
</body>
</html>