-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinternal.html
40 lines (40 loc) · 906 Bytes
/
internal.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
<!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>Document</title>
</head>
<body>
<h1>LIST</h1>
<h2>Ordred List</h2>
<p>Numeric</p>
<ol start="1">
<li>item 1</li>
<li>item 2</li>
</ol>
<p>Lowercase Letters</p>
<ol start="a">
<li>item 1</li>
<li>item 2</li>
</ol>
<p>Uppercase Letter</p>
<ol start="A">
<li>item 1</li>
<li>item 2</li>
</ol>
<p>Upper Roman Number</p>
<ol start="I">
<li>item 1</li>
<li>item 2</li>
</ol>
<p>Lower Roman case</p>
<ol start="i">
<li>item 1</li>
<li>item 2</li>
</ol>
<h2>Unordered List</h2>
<p>Default</p>
</body>
</html>