-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (74 loc) · 3.15 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
68
69
70
71
72
73
74
<!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>The Chocolate Factory | Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="section-one">
<div class="header">
<div class="logo">The Chocolate Factory</div>
<ul class="menu">
<li><a href="#Explore">Explore</a></li>
<li><a href="#Eatback">Feedback</a></li>
<li><a href="#SignUp">Sign Up</a></li>
</ul>
</div>
<div class="content-one">
<div class="container-one">
<div class="title-one">This chocolate is awesome</div>
<div class="subtext-one">Because when one takes a bite of something so delicious, one feels awesome. Plus it's healthy.</div>
<div><button class="button-one">Sign Up</button></div>
</div>
<img class="header-image" src="images/chocolate.png" alt="chocolate beans held in hand">
</div>
</div>
<div class="section-two" id="Explore">
<div class="title-two">
Types of Chocolates
</div>
<div class="picture-row">
<div class="pic-block">
<img class="pic" src="images/dark-chocolate.png" alt="Dark Chocolate">
<div class="text">Come to the dark side. We have chocolate.</div>
</div>
<div class="pic-block">
<img class="pic" src="images/white-chocolate.png" alt="White Chocolate">
<div class="text">How does dark chocolate turn into white chocolate? Turn on the lights!</div>
</div>
<div class="pic-block">
<img class="pic" src="images/milk-chocolate.png" alt="Milk Chocolate">
<div class="text">Don't bite off more than you can chew unless it is milk chocolate.</div>
</div>
<div class="pic-block">
<img class="pic" src="images/bittersweet-chocolate.png" alt="Bittersweet Chocolate">
<div class="text">Life happens. A bittersweet chocolate helps.</div>
</div>
</div>
</div>
<div class="section-three" id="Eatback">
<div class="quote">
All you need is love. But a little chocolate now and then doesn't hurt.
</div>
<div class="quote-author">
– Charles M. Schulz, Cartoonist
</div>
</div>
<div class="section-four" id="SignUp">
<div class="box">
<div class="container-two">
<div class="title-three">Call to action! It's time!</div>
<div class="subtext-two">Sign up for chocolates by clicking that button right over there!</div>
</div>
<div><button class="button-two">Sign Up</button></div>
</div>
</div>
<div class="footer">
<div class="f-one">Made by <a href="https://github.com/tournesol9">Rituparna Das</a></div>
<div class="f-one">As a part of the Odin Project's curriculum</div>
</div>
</body>
</html>