-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.php
31 lines (26 loc) · 826 Bytes
/
navbar.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
<!DOCTYPE html>
<html>
<head>
<title>navbar</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php include "header.php"; ?>
<link rel="stylesheet" type="text/css" href="navbar.css">
</head>
<div class="topnav" id="myTopnav" style="position: sticky; top: 0">
<a href="./home.php">Home</a>
<a href="./services.php">Services</a>
<a href="./cashless_insurance.php">Cashless Insurance</a>
<a href="./gallery.php">Gallery</a>
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="responsive_bar()">☰</a>
</div>
<script>
function responsive_bar() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</html>