-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 935 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/css/index.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
</head>
<body style="background-color: whitesmoke;">
<h1 style="display: block; text-align: center;">Recipes</h1>
<div id="recipes-titles">
<h2>Caprese Burger</h2>
<h2>French Toast Casserole</h2>
<h2>Taco Salad</h2>
</div>
<div id="parentDiv">
<a href="/odin-recipes/recipes/burger.html">
<img class="images" src="/images/caprese.jpg" alt="">
</a>
<a href="/odin-recipes/recipes/casserole.html">
<img class="images" src="/images/casserole.webp" alt="">
</a>
<a href="/odin-recipes/recipes/taco.html">
<img class="images" src="/images/taco_salad.webp" alt="">
</a>
</div>
</body>
</html>