- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercise401.html
More file actions
Latest commit
43 lines (35 loc) · 839 Bytes
/
Copy pathExercise401.html
File metadata and controls
43 lines (35 loc) · 839 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
43
<!doctype html>
<html>
<head>
<title>My first exercise Copied from prevs to demonstrate Parent child concept
</title>
<metacharset="utf-8"/>
</head>
<body>
<h1>My first exercise Copied from prevs to
<span>demonstrate Parent child concept</span>
</h1>
<p><strong> Strong used </strong> is <em> em </em> text.
</p>
</body>
Its first line<br>
<br>
its second line
</br></br>Below is all about Unorderd list combinations
<ul>
<li>Its first elemnt</li>
<li>Its second elemnt</li>
<li>Its third elemnt</li>
</ul>
<br>Next is all about ordered list</br>
<ol>
<li>Its first elemnt</li>
<li>Its second elemnt</li>
<li>Its third elemnt</li>
</ol>
<br>Below is all about DefList DD ans DL usage</br>
<dl>
<dt>Def Titile:</dt>
<dd> its the first entry</dd>
</dl>
</html>