forked from alc-cohort1/GroupWork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Various Lists.html
52 lines (42 loc) · 1.5 KB
/
Various Lists.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Lists</title>
<link rel="stylesheet" href="lists.css">
</head>
<div>
<h1>
Understanding Lists
</h1>
<p>This has been an <em> interesting </em> topic</p>
<body>
<h2
style="color:darkblue">
<strong> Must to today (ordered list) </strong>
</h2>
<ol>
<li>Learn Lists </li>
<li> Eat avocado </li>
<li> Drink Water </li>
</ol>
<h3 style="color:darkgreen">
Things I want to accomplish sometime this week (unordered list)
</h3>
<ul>
<li> Improve my CSS skill </li>
<li> Face Javascript with a cool head </li>
<li> Reward myself with a nice meal at Endiro </li>
</ul>
<h4 style="color:darkorange">
<em> What next? </em> (definition lists)
</h4>
<di> What do I want to do after this? </di>
<dd> Become a Top Class Developer </dd>
<dd> It would be nice to transition into a kick-ass UI designer </dd>
<dd> Would I be too ambitious to want a <em> successful </em> app under my belt? </dd>
</div>
</body>
</html>