forked from thisisshub/HacktoberFest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Coffee-junkie.html
62 lines (56 loc) · 1.68 KB
/
Coffee-junkie.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stores</title>
</head>
<body>
<img src="./images/coffee-logo.png" alt="Junkie logo" width="320px" height="240px" id="logo">
<h3>Coffe Junkie</h3>
<ul><strong>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="stores.html">Stores</a></li>
</strong>
</ul>
<img src="./images/coffe.bg.jpeg" alt="Background" width="100%">
<h1>Our Stores</h1>
<br>
<br>
<br>
<br>
<br>
<table style="border: 2px solid black; border-spacing: 25px;">
<!-- city -->
<tr>
<th>City</th>
<th>Delhi</th>
<th>Mumbai</th>
<th>Bangolore</th>
</tr>
<!-- end of city-->
<!-- orders -->
<tr>
<td>Orders</td>
<td>125</td>
<td>250</td>
<td>500</td>
</tr>
<!--profit-->
<tr>
<td>Profit</td>
<td>$ 10,000</td>
<td>$ 15,000</td>
<td>$ 20,000</td>
</tr>
<!-- end of orders-->
</table>
<br>
<br>
<br>
<!-- copyright and to the top-->
<p>Copyright ©</p>
<h3><a href="#logo">To top</a></h3>
</body>
</html>