-
Notifications
You must be signed in to change notification settings - Fork 0
/
display.html
36 lines (36 loc) · 888 Bytes
/
display.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
<html>
<head>
<title>This is Display Properties</title>
<style>
div {
border:thin solid blue;
width:50%;
margin:0 auto;
padding:0 25px;
background-color:green;
}
li {
display:inline;
padding:0 15px;
font-size:20px;
}
a {
text-decoration:none;
}
a:hover{
color:red;
}
</style>
</head>
<body>
<div>
<h1>Display Properties</h1>
<ul>
<li><a href="home">Home</a></li>
<li><a href="About">About</a></li>
<li><a href="Context">Context</a></li>
<li><a href="Courses">Courses</a></li>
</ul>
</div>
</body>
</html>