-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmlp3.html
More file actions
57 lines (49 loc) · 752 Bytes
/
Copy pathhtmlp3.html
File metadata and controls
57 lines (49 loc) · 752 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<html>
<head>
<style>
body{
background-color:yellow;
font-family:sans-serif;
font-style:italic;
}
ol.a {
list-style-position: outside;
}
p{
padding: 20px 20px 20px 20px ;
}
ul li {
background: #cce5ff;
margin: 10x;
padding: 5px;
}
</style>
<title>
courses
</title>
<p class="tit"><b> Courses attended</b></p>
</head>
<body>
<ol class="a">
<li> Python</li>
<ul>
<li>Variables</li>
<li>lists,Tuples</li>
<li>OOPS concepts</li>
</ul>
</ol>
<ol>
<li> Data structures</li>
<ul>
<li>sortings</li>
<li>Heap,Tree</li>
</ul>
</ol>
<ol>
<li> Cloud computing</li>
<ul>
<li>Virtualization levels</li>
</ul>
</ol>
</body>
</html>