-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (73 loc) · 2.15 KB
/
index.html
File metadata and controls
96 lines (73 loc) · 2.15 KB
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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Ristorante l'Imaginario</title>
<!-- Imports ---------------------->
<!-- Bootstrap JS -->
<script src="js/bootstrap.min.js"></script>
<!-- jQuery -->
<script src="js/jquery-1.11.1.js"></script>
<!-- Sticky Header -->
<script src="js/sticky.js"></script>
<!-- Bootstrap CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Styles ---------------------->
<style type="text/css">
a {
/ word-wrap: break-word;
}
.header {
padding-top: 15px;
height: 50px;
margin-left: auto;
margin-right: auto;
background-color: white;
}
.navigation {
width: 95%;
margin-left: auto;
margin-right: auto;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
z-index: 100;
border-top: 0;
}
.content {
width: 95%;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div>
<img src="images/restaurant.jpg" width="100%">
</div>
<div id="pageHeader" class="header">
<div class="navigation">
<ul class="nav nav-tabs" style="background-color:white;">
<li role="presentation" class="active"><a href="index.html">Start</a>
</li>
<li role="presentation"><a href="reservierung.php">Reservierung</a>
</li>
<li role="presentation"><a href="kontakt.php">Kontakt</a>
</li>
<li role="presentation"><a href="impressum.php">Impressum</a>
</li>
</ul>
</div>
</div>
<div class="content" id="content">
<div class="intro">
<h1>Ristorante l'Imaginario</h1>
<p>Benvenuto auf der Internetseite des Ristorante l'Imaginario.</p>
<h3>Öffnungszeiten:</h3>
<p>Täglich: 17:00 - 23:00</p>
<p>Kein Ruhetag</p>
</div>
</div>
</body>
</html>