-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (39 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Recipes</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;400;700&family=Roboto:wght@100;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/Users/carlosdelgado/repos/odin-recipes/css/styles.css">
</head>
<body>
<nav>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html" target="_blank">Contact Me</a></li>
<li><a href="about.html" target="_blank">About</a></li>
</ul>
</nav>
<header>
<h1>Some Famous Recipes</h1>
</header>
<img src="/Users/carlosdelgado/repos/odin-recipes/img/waiting.gif" alt="Seasoning the food">
<div class="cont">
<a href="recipes/tacos_al_pastor.html"><img src="/Users/carlosdelgado/repos/odin-recipes/img/tacos_al_pastor.jpg" alt="Tacos al Pastor" target="_blank"></a>
<a href="recipes/habanero_salsa.html"><img src="/Users/carlosdelgado/repos/odin-recipes/img/habanero.jpg" alt="Roasted Tomato Habanero Salsa" target="_blank"></a>
<a href="recipes/ratatouille.html"><img src="/Users/carlosdelgado/repos/odin-recipes/img/rat.avif" alt="Ratatouille" target="_blank"></a>
<a href="recipes/big_kahuna.html"><img src="/Users/carlosdelgado/repos/odin-recipes/img/Kahuna_Burger_Photo_with_Descriptions.jpg" alt="Big Kahuna Burger" target="_blank"></a>
<a href="recipes/bubba_gump_shrimp.html"><img src="/Users/carlosdelgado/repos/odin-recipes/img/bubba_gump_shrimp.jpg" alt="Bubba Gump Shrimp" target="_blank"></a>
<a href="recipes/butterbeer.html"><img src="/Users/carlosdelgado/repos/odin-recipes/img/butterbeer.jpg" alt="Harry and Ron drinking Butterbeer" target="_blank"></a>
<a href="recipes/krabby_patty.html"><img src="/Users/carlosdelgado/repos/odin-recipes/img/krabby_patty.jpg" alt="Krabby Patty" target="_blank"></a>
<a href="recipes/matilda.html"><img src="/Users/carlosdelgado/repos/odin-recipes/img/matilda_chocolate_cake.jpg" alt="Big Chocolate Cake from the movie Matilda" target="_blank"></a>
</div>
<p>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS!" />
</a>
</p>
</body>
</html>