forked from sociablerobot10/zeesbakery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (44 loc) · 1.73 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
<!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>Zee's Bakery</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Gentium+Book+Basic:wght@400;700&family=Pacifico&display=swap"
rel="stylesheet">
</head>
<body>
<nav></nav>
<section id="hero">
<h1>Zee's Bakery</h1>
</section>
<section id="mid-section">
<section class="part-section" id="donut"></section>
<section class="part-section" id="order">
<h2>Customized cookies, donuts & cupcakes</h2><button><a href="#" class="order-now">ORDER NOW</a></button>
</section>
<section class="part-section" id="waffle"></section>
</section>
<section id="features">
<section class="feature" id="feature-one">
<img src="images/smartphone.png">
<h3>Fast Delivery</h3>
<p>Fast time to deliver with customized packaging.</p>
</section>
<section class="feature" id="feature-two">
<img src="images/fast-delivery.png" alt="gluten-free-image">
<h3>Mobile App</h3>
<p>Collect rewards, order on the go, and check orders</p>
</section>
<section class="feature" id="feature-three">
<img src="images/gluten-free.png" alt="gluten-free-image">
<h3>Healthy Choices</h3>
<p>Select from several healthy options-gluten free, sugar free, vegan-friendly</p>
</section>
</section>
<footer></footer>
</body>
</html>