-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorderedList.html
More file actions
31 lines (31 loc) · 785 Bytes
/
orderedList.html
File metadata and controls
31 lines (31 loc) · 785 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Adolfo Barrientos">
<title>Research Paper Template</title>
<style>
ol{list-style-type: upper-roman;}
ol ol{list-style-type: upper-alpha;}
ol ol ol{list-style-type: decimal;}
</style>
</head>
<body>
<h1>Research Paper Template</h1>
<ol>
<li>Introduction</li>
<li>Main Body
<ol>
<li>Ice-breaker Cartoons</li>
<li>Examples
<ol>
<li>Personal Experience</li>
<li>What friends say</li>
</ol>
</li>
</ol>
</li>
<li>Appendages</li>
</ol>
</body>
</html>