-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (66 loc) · 2.36 KB
/
index.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
<!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>Coffee Shop</title>
<link rel="stylesheet" href="coffeeshop.css">
</head>
<body>
<div class="container">
<header class="coffee-header">
<div class="div-logo">
<img src="coffee-logo.png" alt="coffee-mug-logo">
<span class="logo-text">Coffee Shop</span>
</div>
<nav class="coffee-nav">
<a href="#">Home</a>
<a href="#">Product</a>
<a href="#">Price</a>
<a href="#">About</a>
</nav>
</header>
<div class="site-content">
<div class="image-content">
<h1 class="quote">Coffee is a beverage brewed from the roasted and ground seeds of the tropical evergreen coffee plant. Coffee is one of the three most popular beverages in the world</h1>
</div>
<div class="card-list">
<h1 id="product">Product</h1>
<div class="card">
<img src="coffeecards/mocha-image.png" alt="Mocha Image">
<div>
<h2>Mocha</h2>
<h3>₹ 150</h3>
</div>
</div>
<div class="card">
<img src="coffeecards/cappuccino-image.png" alt="Cappuccino Image">
<div>
<h2>Cappuccino</h2>
<h3>₹ 175</h3>
</div>
</div>
<div class="card">
<img src="coffeecards/americano-image.png" alt="Americano Image">
<div>
<h2>Americano</h2>
<h3>₹ 350</h3>
</div>
</div>
<div class="card">
<img src="coffeecards/latte-image.png" alt="Latte Image">
<div>
<h2>Latte</h2>
<h3>₹ 156</h3>
</div>
</div>
<div class="order-section">
<h1 id="order">Order</h1>
<script type="text/javascript" src="https://form.jotform.com/jsform/232423164935051"></script>
</div>
</div>
</div>
</div>
</body>
</html>