- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex.html
More file actions
Latest commit
66 lines (57 loc) · 1.38 KB
/
Copy pathex.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>
<metaname="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;
}
.topnava {
float:left;
display: block;
color:white;
text-align: center;
padding:15px;
text-decoration: none;
}
.topnava: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>
<divclass="topnav">
<ahref=user.html>USER</a>
<ahref=#>PROJECT</a>
<ahref=#>ISSUE</a>
<ahref=#>COMMENTS</a>
<ahref=#style="float:right">ABOUT</a>
<ahref="#"><spanclass="glyphicon glyphicon-log-in"></span> Login</a></li>
</div>
<imgsrc="vicky.jpg" alt="vicky" class="image">
<divclass="footer">
<h1>This is fotter..</h1>
</div>
</body>
</html>