-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (65 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title>Learning html</title>
<link rel="stylesheet" type="text/css" href="coffeeshop.css">
</head>
<body>
<div class="container">
<header class="coffee-header">
<div class="div-logo">
<img src="coffee-logo.png">
<span class="logo-text">CoffeeShop
</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 the best thing to douse the sunrise with.</h1>
</div>
<div class="card-list">
</div>
<div class="order-section">
<h1 id="order">Order</h1>
<script type="text/javascript" src="https://form.jotform.com/jsform/211702362399052"></script>
</div>
<h1 id="product">Products</h1>
<div class="card">
<img src="mocha1.jpg">
<div>
<h2>Mocha</h2>
<h3>₹150</h3>
</div>
</div>
<div class="card">
<img src="cappuccino1.jpg">
<div>
<h2>Cappuccino</h2>
<h3>₹250</h3>
</div>
</div>
<div class="card">
<img src="americano.jpg">
<div>
<h2>Americano</h2>
<h3>₹155</h3>
</div>
</div>
<div class="card">
<img src="latte.jpg">
<div>
<h2>Latte</h2>
<h3>₹175</h3>
</div>
</div>
</div>
</div>
</div>
</body>
</html>