-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexp11.html
More file actions
41 lines (37 loc) · 881 Bytes
/
exp11.html
File metadata and controls
41 lines (37 loc) · 881 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
<!-- example on list tag-->
<DOCTYPE html>
<html lang="en">
<head>
<title> my 11th web page</title>
<link rel="icone" href="id.png"/>
</head>
<body>
<h3>demo on unordered list</h3>
<h4>list of banks</h4>
<ul>
<li>HDFC Bank</li>
<li>SBI</li>
</ul>
<hr>
<h4>list of banks</h4>
<ul type="circle">
<li>HDFC Bank</li>
<li>SBI</li>
</ul>
<hr>
<h4>List of Mobiles</h4>
<ul > <!-- outer list -->
<li>Samsung</li>
<ul > <!--inner list-->
<li>Galaxy z fold5</li>
<li>Galaxy S25</li>
<li>Galaxy Flip5</li>
</ul>
<li>Vivo</li>
<ul>
<li>X100</li>
<li>v40</li>
<li>Vivo V20</li>
</ul>
</body>
</html>