-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathindex.html
43 lines (39 loc) · 917 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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<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" />
<link rel="stylesheet" type="text/css" href="./styles.css" />
<title>04 List styling</title>
</head>
<body>
<div class="container">
<h2>Your favorite drinks</h2>
<h4>Coca Cola drinks</h4>
<ol class="cocacola">
<li>Coca Cola</li>
<li>Dr. Pepper</li>
<li>Fanta</li>
</ol>
<h4>Pepsi drinks</h4>
<ol class="pepsi">
<li>Pepsi Cola</li>
<li>Mountain Dew</li>
<li>Gatorade</li>
</ol>
<h4>Healthy drinks</h4>
<ul class="healthy">
<li>Kombucha</li>
<li>Kale juice</li>
<li>Sparkling Water</li>
</ul>
<h4>Web-developer drinks</h4>
<ul class="dev-drinks">
<li>Coffee</li>
<li>COFFEE</li>
<li>COFFEE!!!</li>
</ul>
</div>
</body>
</html>