-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
77 lines (73 loc) · 2.46 KB
/
home.html
File metadata and controls
77 lines (73 loc) · 2.46 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/index.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<title>Home</title>
</head>
<body>
<nav>
<a href="home.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="recipes.html">Recipes</a>
<a href="https://ch0w.now.sh/register" class="button">Sign Up</a>
</nav>
<section class="home-page-top">
<h1>Awesome delicious recipes to share.</h1>
<p>Share recipes</p>
</section>
<div class="home-headings">
<h1>Popular Recipes</h1>
</div>
<section class="featured-recipes">
<div>
<h1>Jumbo Burger</h1>
<p>Try the most delicious burger ever. Grilled to perfection.</p>
</div>
<div class="pasta">
<h1>Baked Mostaccioli</h1>
<p>Mostaccioli made with red hot sauce and spinach. This is voted by far
a craving to die for.
</p>
</div>
<div class="speghetti">
<h1>Cheesy Spaghetti</h1>
<p>Spaghetti with cheese. Yum.</p>
</div>
</section>
<div class="home-headings">
<h1>Most recent recipes shared.</h1>
<p>Share recipes with friends.</p>
</div>
<section class="popular-categories">
<div class="chili">
<h1>Buffalo Chili</h1>
<p>View Recipe</p>
</div>
<div class="meatballs">
<h1>BBQ Grape Jelly Meatballs</h1>
<p>View Recipe</p>
</div>
<div class="alfredo">
<h1>Classica Chicken Alfredo</h1>
<p>View Recipe</p>
</div>
<div class="chicken-bites">
<h1>Garlic Butter Chicken Bites with Lemon Asparagus</h1>
<p>View Recipe</p>
</div>
</section>
<footer>
<a href="home.html">Home</a>
<a href="about.html">About</a>
<a href="recipes.html">Recipes</a>
<a href="contact.html">Contact</a>
<a href="https://ch0w.now.sh/register" class="button">Sign Up</a>
</footer>
</body>
</html>