-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.14 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.14 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Recipes Book</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="title">Odin Recipes</h1>
<pre class="ascii">
|\ /| /| /|_/|
|\||-|\||-/|/|
\\|\|//||///
_..----.._ |\/\||//||||
.' o '. |||\\|/\\ ||
/ o o \ | './\_/.' |
|o o o| | |
/'-.._o __.-'\ | |
\ ````` / | |
|``--........--'`| '.______.'
\ /
`'------------'`</pre>
<div class="container">
<ul class="recipelist">
<li class="recipelist"><a href="recipes/lasagna.html">Lasagna recipe</a></li>
<li class="recipelist"><a href="recipes/sushi.html">Sushi recipe</a></li>
<li class="recipelist"><a href="recipes/burrito.html">Burrito recipe</a></li>
</ul>
</div>
</body>
</html>