-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
49 lines (49 loc) · 1.38 KB
/
details.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
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<title>Details</title>
<style>
.bg{
background-color:lightblue;
}
ul.navbar{
display: block;
list-style-type: none;
background-color: black;
padding: 10px;
}
li.nav{
display: inline;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 5px;
background-color: black;
}
li a{
text-decoration: none;
color: white;
}
li.nav:hover{
background-color: grey;
}
li.nav:active{
background-color: red;
}
</style>
</head>
<body>
<ul class="navbar">
<li class="nav"><a href="HTML_Basics.html">Home</a></li>
<li class="nav"><a href="form.html">Register</a></li>
<li class="nav"><a href="details.html">Personal Details</a></li>
</ul>
<div class="bg">
Name: Naga Sai Rohith <br>
Phone No: 9876543210 <br>
Course : Btech <br>
Description : To learn programming languages <br>
Selected subjects : c,java,python <br>
</div>
</body>
</html>