-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAss1.html
More file actions
56 lines (56 loc) · 1.36 KB
/
Copy pathAss1.html
File metadata and controls
56 lines (56 loc) · 1.36 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<title>Assignment 1</title>
<style>
h1{
color: rgb(101, 0, 138);
text-transform:uppercase;
text-decoration:underline;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
ul li{
color: rgb(255, 86, 48);
font-size: larger;
font-family:Georgia, 'Times New Roman', Times, serif;
text-decoration: underline;
}
ol li{
color: rgb(1, 123, 92);
font-size:medium;
font-family:cursive;
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Assignment 1.1</h1>
<ul>
<li>
Food items
<ol>
<li>Milk</li>
<li>Banana</li>
<li>Apple</li>
</ol>
</li>
<li>
Movies
<ol>
<li>Harry Potter </li>
<li>Spiderman </li>
<li>Avengers</li>
</ol>
</li>
<li>
Courses
<ol>
<li>C++</li>
<li>Java</li>
<li>Python</li>
<li>Full stack</li>
</ol>
</li>
</ul>
</body>
</html>