-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask-2.html
More file actions
36 lines (36 loc) · 1.02 KB
/
Task-2.html
File metadata and controls
36 lines (36 loc) · 1.02 KB
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
<!DOCTYPE html>
<html >
<head>
<title>Task-2</title>
<style>
table{
border-collapse: collapse;
text-align: start;
}
.solid{
margin: 10% 35%;
border-style:solid;
border-width: 2px 2px;
}
</style>
</head>
<body>
<a href="./index.html" style="text-decoration: none; font-size: larger; color: black;">Back to Home Page</a>
<div class="solid">
<dt>
Lists can be nested (list inside list):
</dt>
<dd>
<ul type="disc">
<li>Coffee</li>
<li>Tea</li>
<ul type="circle">
<li>Black tea</li>
<li>Green tea</li>
</ul>
<li>Milk</li>
</ul>
</dd>
</div>
</body>
</html>