-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlunch.html
41 lines (41 loc) · 1.69 KB
/
lunch.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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=utf-8 />
<title>Project Pierce | Lunch</title>
<link rel=icon href=images/logo.png>
<link rel=stylesheet href=style.css>
<script src=show-recipe.js></script>
</head>
<body>
<nav>
<ul>
<li><a href=index.html>🏠 Home</a></li>
<li><a href=breakfast.html>Breakfast</a></li>
<li><a href=lunch.html class=active>Lunch</a></li>
<li><a href=dinner.html>Dinner</a></li>
<li><a href=snacks.html>Snacks</a></li>
<li><a href=stir-fry.html>Stir-Fry</a></li>
<li><a href=beverages.html>Beverages</a></li>
</ul>
</nav>
<main>
<div>
<details onmouseover=showRecipe(this)>
<summary>Locally-Sourced Bread</summary>
<figure>
<img src=images/bread.jpg alt=Lunch>
<figcaption>Pair any of Pierce's lunchtime entrées with some locally-sourced bread or use the bread as a base for creating a sandwich at the Pierce sandwich station.</figcaption>
</figure>
</details>
<details onmouseover=showRecipe(this)>
<summary>BBQ Ribs</summary>
<figure>
<img src=images/bbqribs.jpg alt="BBQ Ribs">
<figcaption>Pork ribs marinated in Barbecue Sauce. Additional BBQ Sauce is available at the sauce station if desired.</figcaption>
</figure>
</details>
</div>
</main>
</body>
</html>