-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 3.01 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
<!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>Chez Llamaish</title>
<link rel="stylesheet" href="styles/style.css"
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Arizonia&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<header class="site-head">
<h1 class="site-title"><a href="/chezllamaish">Chez Llama<span class="ish">ish</span></a></h1>
<p>We help people discover and share the joy of gourmet home cooking with recipes mimicing the gourmet cuisine of Chez Llama.</p>
</header>
<main>
<nav class="site-nav">
<h2>Featured Recipes</h2>
<ul class="featured-recipes">
<li>
<a href="recipes/beef-bourguignon.html">
<figure>
<image src="images/bourguignon.jpeg" alt="Beef Bourguignon">
<figcaption>
<h3>Beef Bourguignon</h3></a>
<p>Tender, fall-apart chunks of beef simmered in rich red wine gravy</p>
</figcaption>
</figure>
</li>
<li>
<a href="recipes/beef-wellington.html">
<figure>
<image src="images/wellington.jpeg" alt="Beef Wellington">
<figcaption>
<h3>Beef Wellington</h3></a>
<p>Luxurious filet mignon wrapped in buttery puff pastry</p>
</figcaption>
</figure>
</li>
<li>
<a href="recipes/champagne-shrimp.html">
<figure>
<image src="images/shrimp.jpeg" alt="Champagne Shrimp">
<figcaption>
<h3>Champagne Shrimp</h3></a>
<p>Delightfully fresh shrimp simmered in delicate champagne sauce</p>
</figcaption>
</figure>
</li>
</ul>
</nav>
</main>
<footer class="site-foot">
<small class="copyright">
<p>©️ 2021</p>
<div class="logo">
<p>Chez Llama<span class="ish">ish</span></p>
</div>
</small>
<small class="made-by"><p>Made by @<a href="/">jewell</a></p></small>
</footer>
</div>
</body>
</html>