-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 969 Bytes
/
index.html
File metadata and controls
38 lines (37 loc) · 969 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>odin-recipes</title>
<style>
#head {
display: block;
margin: auto;
margin-top: 3rem;
border-radius: 200px;
width: min(70%, 250px);
}
#content {
display: block;
margin:auto;
margin-top: 2rem;
border-radius: 25px;
width: min(70%, 500px);
box-shadow: 2rem 1rem 1rem 2rem darkgray;
text-align: center;
}
</style>
</head>
<body>
<div id="head"><h1>Odin recipes</h1></div>
<div id="content">
<img src="https://avatars.githubusercontent.com/u/4441966?s=280&v=4" alt="">
<br>
<ul>
<li><a href="./recipes/lasagna.html" target="_blank">Lasagna recipe</a>
</li>
</ul>
</div>
</body>
</html>