-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (76 loc) · 3.26 KB
/
index.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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Quicksand:700&display=swap" rel="stylesheet">
<title>DR. MED UMUT KAPLAN</title>
<script>
function myFunction(x) {
x.classList.toggle("change");
document.getElementById("container").style.Color = 'red';
}
</script>
</head>
<body>
<header>
<div>
<h1 class="title">ZAHNARZTPRAXIS <br> DR. MED UMUT KAPLAN </h1>
</div>
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Willkommen</a>
<a href="unsereleistungen.html">Unsere Leistungen</a>
<a href="kontakt.html">Kontakt & Anfahrt</a>
</div>
<button class="openbtn" onclick="openNav()">☰ </button>
<script>
function openNav() {
document.getElementById("mySidebar").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
}
function closeNav() {
document.getElementById("mySidebar").style.width = "0";
document.getElementById("main").style.marginLeft = "0";
}
</script>
<nav>
<a href="index.html">Willkommen</a></li>
<a href="unsereleistungen.html">Unsere Leistungen</a></li>
<a href="kontakt.html">Kontakt & Anfahrt</a></li>
</nav>
</header>
<div class="body">
<div id="page-container">
<div class="white">
<div>
<div>
<h2>Wir freuen uns, Sie in unserer Zahnarztpraxis
in Neckarsulm am Bechtle Platz 1 begrüßen zu dürfen.
</h2>
<p>Unser Behandlungskonzept ist auf den Erhalt und die Wiederherstellung Ihrer
Mundgesundheit und Zahnästhetik ausgerichtet. Dabei stehen die Qualität
unserer Arbeit und Ihre persönliche Betreuung gleichwertig im Vordergrund.
</p>
<p id="green"> Wir freuen uns auf Sie! <br>
Ihre Zahnarztpraxis <br>
Dr. Med. Umut Kaplan
</p>
<h2> Unsere Öffnungszeiten</h2>
<p> Montag bis Donnerstag <br> 8 - 12 | 13 - 17 Uhr <br> Freitag <br> 8 - 15 Uhr
</p>
</div>
<img src="assets/team.jpg" alt="Team" id="team">
</div>
</div>
</div>
<div>
<footer>
<p> DR. MED. UMUT KAPLAN - BECHTLE PLATZ 1 - 74172 NECKARSULM - TELEFON: 07132 / 98 765 43 </p>
</footer>
</div>
<div></div>
</body>
</html>