-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex.html
More file actions
66 lines (57 loc) · 1.38 KB
/
ex.html
File metadata and controls
66 lines (57 loc) · 1.38 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
57
58
59
60
61
62
63
64
65
66
<html>
<head>
<title>Example Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
}
header {
background-color:gray;
padding:10px;
text-align: center;
}
.topnav {
overflow: hidden;
background-color:#333;
}
.topnav a {
float:left;
display: block;
color:white;
text-align: center;
padding: 15px;
text-decoration: none;
}
.topnav a:hover {
background-color: gainsboro;
}
.image {
border: 2px;
width:100%;
}
.footer {
padding: 10px;
text-align: center;
background:gray;
}
</style>
</head>
<body>
<header>
<h1> Issue Tracking System.. </h1>
</header>
<div class="topnav">
<a href=user.html>USER</a>
<a href=#>PROJECT</a>
<a href=#>ISSUE</a>
<a href=#>COMMENTS</a>
<a href=# style="float:right">ABOUT</a>
<a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</div>
<img src="vicky.jpg" alt="vicky" class="image">
<div class="footer">
<h1>This is fotter..</h1>
</div>
</body>
</html>