-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
50 lines (45 loc) · 1.32 KB
/
header.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Main Header</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<style>
.nav1
{
height:70px;
background-color:#595959;
}
.text1
{
margin-top:10px;
}
.nav2
{
margin-right:430px;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse nav1">
<div class="container-fluid">
<div class="navbar-header ">
<a class="navbar-brand text1">Jtax</a>
</div>
<ul class="nav navbar-nav">
<li><a href="Jtaxmainpage.php" class="text1">Home</a></li>
<li><a href="#" class="text1">About Us</a></li>
<li><a href="#" class="text1">Contact Us</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="register.php" class="text1"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="login.php" class="text1"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</nav>
</body>
</html>