-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListTable.html
More file actions
37 lines (35 loc) · 1006 Bytes
/
Copy pathListTable.html
File metadata and controls
37 lines (35 loc) · 1006 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List - HTML Tutorial</title>
</head>
<body>
<h1>List in HTML</h1>
<h2>Friends</h2>
<ol>
<li>komal</li>
<li>palak</li>
<li>khushi</li>
<li>sakshi</li>
</ol>
<h2>friends</h2>
<ul>
<li>komal</li>
<li>palak</li>
<li>khushi</li>
<li>sakshi</li>
</ul>
<dl>
<dt>python</dt>
<dd>A high level,interpreted programming language know for its ease of use</dd>
<dt>javascript</dt>
<dd>a scripting language primarily used foe dynamic web pages</dd>
<dt>HTML</dt>
<dd>The standard markup language for creating web pages</dd>
<dt>CSS</dt>
<dd>A Stylesheet language used to describe the presentation of a document written in HTML.</dd>
</dl>
</body>
</html>