-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.04 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
<!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>Odin Recipes</title>
<link rel="stylesheet" href="external.css">
<style>
p {
background-color: green;
color: white;
font-size: 18px;
}
</style>
</head>
<body>
<h1> Odin Recipes</h1>
<ul>
<div>
<li><a href="recipes/friedrice.html">Fried Rice</a></li>
<li><a href="recipes/beefeggrolls.html">Beef Egg Rolls</a></li>
<li><a href="recipes/traditionalfilipinolumpia.html">Traditional Filipino Lumpia</a></li>
</div>
</ul>
<p>This is internal css</p>
<button style="background-color: orange; font-size: 18px;">This is inline css</button>
<p class="odd">number 1</p>
<div id="two">number 2</div>
<p class="odd mod-font">number 3</p>
<div id="four" class="mod-font">number 4</div>
<p class="odd">number 5</p>
</body>
</html>