-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunsereleistungen.html
89 lines (67 loc) · 3.65 KB
/
unsereleistungen.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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>Unsere Leistungen</title>
</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>
<a href="unsereleistungen.html">Unsere Leistungen</a>
<a href="kontakt.html">Kontakt & Anfahrt</a>
</nav>
</header>
<div class="body">
<div class="white">
<h2>Unsere Leistungen</h2>
<div class="leistungen-karte">
<img src="assets/zahnarztpraxis.jpg" alt="Zahnreinigung" width="50%" height="auto">
<div>
<a class="zahnreinigung" href="zahnreinigung.html">PROFESSIONELLE ZAHNREINGUNG</a>
<p class="card-text">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et
justo duo dolores et ea rebum. Stet clita kasd gubergren.
</p>
</div>
</div>
<div class="leistungen-karte">
<img src="assets/zahnimplantate.jpg" alt="Zahnimplantate" width="50%" height="220px">
<div>
<a class="zahnreinigung" href="zahnimplantate.html">ZAHNIMPLANTATE</a>
<p class="card-text">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt
ut labore et dolore magna aliquyam erat, sed diam voluptua.
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren.</p>
</div>
</div>
</div>
</div>
<footer>
<p> DR. MED. UMUT KAPLAN - BECHTLE PLATZ 1 - 74172 NECKARSULM - TELEFON: 07132 / 98 765 43 </p>
</footer>
</body>
</html>