-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
42 lines (39 loc) · 703 Bytes
/
list.html
File metadata and controls
42 lines (39 loc) · 703 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
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>this is my 1st website</title>
</head>
<body>
<h1>unordered list</h1>
<ul>
<li>hello</li>
<li>hello</li>
<li>hello</li>
<li>hello</li>
<li>hello
<ul>
<li>hello</li>
<li>hello</li>
<li>hello</li>
<li>hello</li>
</ul>
</li>
</ul>
<h1>ordered list</h1>
<ol type="a">
<li>hello</li>
<li>hello</li>
<li>hello</li>
<li>hello</li>
</ol>
<h1>discriptiion list</h1>
<dl>
<dt>HTML</dt>
<dd>This adds structure to a webpage</dd>
<dt>CSS</dt>
<dd>This adds style to a webpage</dd>
<dt>JavaScript</dt>
<dd>This adds functionality to a webpage</dd>
</dl>
</body>
</html>