-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (85 loc) · 2.25 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!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>BOTW Recipes</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Breath of the Wild Recipes</h1>
<nav>
<label for="search">Search a recipe here</label>
<input type="text" id="search" />
<button>Search</button>
</nav>
</header>
<br />
<main>
<table class="table">
<thead>
<tr class="firstrow">
<th></th>
<th>Meal</th>
<th>Ingredients</th>
<th>Effect</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img
src="../images/BotW_Meaty_Rice_Balls_Icon.png"
alt="Basic Meaty Rice Balls"
/>
</td>
<td>
<a href="./pages/basic_meaty_rice_balls.html"
>Basic Meaty Rice Balls</a
>
</td>
<td>
<p>Hylian Rice</p>
<p>Meat</p>
</td>
<td>Restoring <span>Hearts ♥</span></td>
</tr>
<tr>
<td>
<img
src="../images/BotW_Meat_and_Mushroom_Skewer_Icon.png"
alt=""
/>
</td>
<td>
<a href="./pages/meat_and_mushroom_skewer.html"
>Meat and Mushroom Skewer</a
>
</td>
<td>
<p>Meat</p>
<p>Mushroom</p>
</td>
<td>Restoring <span>Hearts ♥</span></td>
</tr>
<tr>
<td>
<img
src="../images/BotW_Simmered_Fruit_Icon.png"
alt="Simmered fruit from BOTW"
/>
</td>
<td><a href="./pages/simmered_fruit.html">Simmered Fruit</a></td>
<td><p>Fruit</p></td>
<td>Restoring <span>Hearts ♥</span></td>
</tr>
</tbody>
</table>
</main>
<footer>
<nav></nav>
</footer>
</body>
</html>