forked from hack4impact-calpoly/bootcamp-grocery-prep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (61 loc) · 2.31 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
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Sah Dude</title>
<link rel="icon" href="https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Flag_of_the_Philippines_-_cropped_sun.svg/1900px-Flag_of_the_Philippines_-_cropped_sun.svg.png" type="image/png">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1 class="top">~Grocery Prep~</h1>
<nav>
<a class="top" href = "index.html">Home</a>
<a class="top" id="random"href="random.html">Random Recipe</a>
<a class="top" id= "about" href = "about.html">About the Chef</a>
</nav>
</header>
<main>
<h1 class = "title">This is the Grocery Prep Home Page</h1>
<p>Find some "recipes" below, organized by skill level</p>
<h2>Recipes</h2>
<!section>
<h3>Very Low Effort</h3>
<! add picture?>
<ul class="front-page">
<li>
<a href = "milk_tea.html">Milk Tea</a>
<img src = "images/leaf.png" class="diet">
</li>
<li>
<a href = "banana_toast.html">Banana Toast</a>
<img src = "images/leaf.png" class="diet">
</li>
</ul>
<h3>Low Effort</h3>
<! add picture?>
<ul class="front-page">
<li>
<a href = "croissant.html">Breakfast Croissantwich</a>
<img src = "images/leaf.png" class="diet">
</li>
<li>
<a href = "french_toast.html">French Toast</a>
<img src = "images/leaf.png" class="diet">
</li>
</ul>
<h3>Mezzo Efforte</h3>
<! add picture?>
<ul class="front-page">
<li>
<a href = "tilapia.html">Tilapia</a>
<img src = "images/fish.png" class="diet fish">
</li>
<li>
<a href = "tofu.html">Spicy Tofu Soup</a>
<img src = "images/leaf.png" class="diet">
</li>
</ul>
<!/section>
</main>
</body>
</html>