-
Notifications
You must be signed in to change notification settings - Fork 0
/
courses.html
46 lines (46 loc) · 1.18 KB
/
courses.html
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
<html>
<head>
<title>My Courses</title>
<style>
.grey{
color: grey;
}
.black {
color: black;
}
a:link,a:visited{
text-decoration: none;
background-color:darkgoldenrod;
color: white;
padding: 10px 20px;
display: inline-block;
}
a:hover{
background-color: goldenrod;
}
</style>
</head>
<body>
<div class="grey">
<h2 class="black">My Courses :</h2>
<ol>
<li class="black"><b>Guided Project</b></li>
<ul>
<li>Python django</li>
<li>HTML</li>
</ul>
<li class="black"><b>Angular Js</b></li>
<ul>
<li>Git introduction</li>
<li>Angular Server</li>
</ul>
<li class="black"><b>Conduira</b></li>
<ul>
<li>Aptitude</li>
<li>Coding</li>
</ul>
</ol>
<a href="form.html">REGISTER</a>
</div>
</body>
</html>