-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<div>
<h1>Recipes 101</h1>
<nav id="navbarlinks">
<a class="navlinks" href="">About</a>
<a class="navlinks" href="">FAQ</a>
<a class="navlinks" href="">Contact</a>
</nav>
</div>
</header>
<main>
<section id="landing">
<div>
<div id="landingleft">
<h1>These Recipes Are Awesome!</h1>
<p>This website has some great recipes so try them all and let us know what you think.</p>
<button>Sign Up</button>
</div>
<div id="landingright">
<img id="landingimage" src="images/landingimage.jpg" alt="Picture of meal" />
</div>
</div>
</section>
<section id="content">
<div>
<h2>Top Four Recipes</h2>
<div id="contentcontainer">
<div class="contentbox">
<img src="images/hamburger.png" alt="image of a hamburger" />
<p>Hamburger</p>
</div>
<div class="contentbox">
<img src="images/salad.png" alt="image of a salad" />
<p>Salad</p>
</div>
<div class="contentbox">
<img src="images/ribeye.png" alt="image of a ribeye steak" />
<p>Ribeye</p>
</div>
<div class="contentbox">
<img src="images/salmon.png" alt="image of a salmon meal" />
<p>Salmon</p>
</div>
</div>
</div>
</section>
<section id="blockquote">
<blockquote>
<p>"Why not go out on a tree? That's where all the fruit is."</p>
<footer>- Will Rogers</footer>
</blockquote>
</section>
<section id="calltoactioncontainer">
<div id="calltoactionbox">
<div id="calltoactionleft">
<h3>Call to Action! It's Time!</h3>
<p>Sign up for our recipes by clicking the button right over there!</p>
</div>
<div id="calltoactionbuttonbox">
<button id="calltoactionbutton">Sign Up</button>
</div>
</div>
</section>
</main>
<footer id="footer">
<p>Copyright © ComfyClicks 2024</p>
</footer>
</body>
</html>