-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
55 lines (40 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,
900i&display=swap&subset=latin-ext" rel="stylesheet">
<title>adish International Corp.</title>
<?php wp_head()?>
</head>
<body>
<!-- NAVIGATION BAR START HERE-->
<nav id="main-nav-bar">
<div class="nav-bar">
<div class="adish-logo-container animated bounceIn">
<img src="img\logo\adish_logo.png" width="120px" class="adish-logo"/>
</div>
<div class="adish-burger-container animated bounceIn" onclick="burgerclick(this)">
<div class="burger-layer-1" id="burger-layer-1"></div>
<div class="burger-layer-2" id="burger-layer-2"></div>
<div class="burger-layer-3" id="burger-layer-3"></div>
</div>
<ul class="nav-choice-container2" id="nav-choice-container2">
<a href="solutions"><li class="nav-choice2 animated bounceIn" onmouseover="hover(this)" onmouseout="hoverOff(this)">Solutions</li></a>
<a href="careers"><li class="nav-choice2 animated bounceIn" onmouseover="hover(this)" onmouseout="hoverOff(this)">Careers</li></a>
<a href="blogs"><li class="nav-choice2 animated bounceIn" onmouseover="hover(this)" onmouseout="hoverOff(this)">Blog</li></a>
<a href="about-us"><li class="nav-choice2 animated bounceIn" onmouseover="hover(this)" onmouseout="hoverOff(this)">About Us</li></a>
<a href="contact-us"><li class="nav-choice2 animated bounceIn" onmouseover="hover(this)" onmouseout="hoverOff(this)">Contact Us</li></a>
</ul>
</div>
</nav>
<ul class="nav-choice-container" id="nav-choice-container">
<a href="#"><li class="nav-choice animated bounceIn">Solutions</li></a>
<a href="#"><li class="nav-choice animated bounceIn">Careers</li></a>
<a href="#"><li class="nav-choice animated bounceIn">Blog</li></a>
<a href="#"><li class="nav-choice animated bounceIn">About Us</li></a>
<a href="#"><li class="nav-choice animated bounceIn">Contact Us</li></a>
</ul>
<!-- NAVIGATION BAR END HERE-->