forked from amanmistry/skillix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
73 lines (60 loc) · 2.61 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta http-equiv="X-UA-Comptible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Source+Serif+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/all.min.css">
<link rel="stylesheet" type="text/css" href="css/fontawesome.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/skilix.css">
<link rel="stylesheet" href="css/animate.css">
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
<style >
.dropdown:hover>.dropdown-menu{
display: block;
background: grey;
}
.font
</style>
</head>
<body>
<!-- Navigation bar-->
<nav class="navbar navbar-expand-md navbar-dark fixed-top nava " style="padding:3vh; font-size: 18px;background-color: #b32d00; ">
<a class="navbar-brand" href="index.php">
<img src="image/logo.png" width="30" height="30" class="d-inline-block align-top logo" alt="">
<span style="color: white;">Skillix</span>
</a>
<button class="navbar-toggler " type="button" data-toggle="collapse" data-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse " id="navbarTogglerDemo01">
<ul class="navbar-nav ml-auto mt-2 mt-lg-0 navi">
<li class="nav-item ">
<a class="nav-link font text-white" href="index.php">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link font text-white" href="register.php">Register</a>
</li>
<li class="nav-item">
<a class="nav-link font text-white" href="login.php">Login</a>
</li>
<li class="nav-item">
<a class="nav-link font text-white" href="about.php">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link font text-white " href="contact.php" >Contact Us</a>
</li>
</ul>
</div>
</nav>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>