-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
45 lines (45 loc) · 1.97 KB
/
header.html
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
<!-- Website Logo Place -->
<script>
$('.main-nav li').hover(function(){
$(this).children('ul').stop(true, true).slideDown(500);
},function(){
$(this).children('ul').stop(true, true).slideUp(500);
});
</script>
<div id="logo-container">
<a href="index.html" class="logo" title="Zamani">
<img src="images/logo.png" alt="Zamani">
<span class="tagline">Dr. M. Zamani</span>
</a>
</div>
<ul class="social-nav">
<li class="phone"><span>07252-6877</span></li>
</ul>
<nav class="main-nav clearfix">
<!-- MAIN NAVIGATION -->
<div class="menu-div">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="diagnostic.html">Services</a>
<ul>
<li><a href="diagnostic.html">Diagnostik</a></li>
<li><a href="therapie.html">Therapie</a></li>
</ul>
</li>
<li>
<a href="bretten.html">Gallerie</a>
<ul>
<li><a href="bretten.html">Bretten</a></li>
</ul>
</li>
<li>
<a href="sprechzeit.html">Sprechzeiten</a>
</li>
<li><a href="contact.html">Kontakt</a></li>
<li><a href="impressum.html">Impressum</a></li>
</ul>
</div>
</nav>