-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.66 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.66 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Mochi Donuts</title>
</head>
<body>
<!-- Header -->
<div class="header">
<div class="menu">
<img src="./images/Menu.png" alt="menu icon" />
<h3>Menu</h3>
</div>
<div id="logo">
<h1>MOCHI DONUTS</h1>
<img src="./images/logo.png" alt="shop logo" />
</div>
<button>Order Now</button>
</div>
<!-- Main Section -->
<div>
<!-- Section One -->
<div class="box">
<img src="./images/mochi 2.png" alt="biscoff bliss mochi donut" />
<div>
<h2>Biscoff Bliss Mochi Donut</h2>
<p>Light, fluffy and delightfully chewy - coated in a smooth Biscoff glaze and topped with crunchy bits of crushed Biscoff cookies.</p>
<div>
<button>Learn More</button>
<button>Order Now</button>
</div>
</div>
</div>
<!-- Section Two -->
<div class="box">
<div>
<h2>Berry Burst Mochi Donut</h2>
<p>Fluffy and chewy, this donut comes dipped in a sweet strawberry glaze and sprinkled with tangy freeze-dried strawberry bits.</p>
<div>
<button>Learn More</button>
<button>Order Now</button>
</div>
</div>
<img src="./images/mochi.png" alt="berry burst mochi donut" />
</div>
</div>
</body>
</html>