-
Notifications
You must be signed in to change notification settings - Fork 1
/
info.html
46 lines (44 loc) · 1.91 KB
/
info.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Macrosystem Moon</title>
<link rel="icon" type="image/png" href="favicon.png"/>
<link rel="stylesheet" href="./jqm/jquery.mobile-1.2.0.min.css" />
<script src="./jqm/jquery-1.8.3.min.js"></script>
<script src="./jqm/jquery.mobile-1.2.0.min.js"></script>
<link rel="stylesheet" type="text/css" href="aussehen.css">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<link rel="stylesheet" type="text/css" href="css/splashscreen.css" />
<script src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.4.min.js"></script>
<script src="js/jquery.splashscreen.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<div data-role="page" id="Info" data-title="Infoseite" data-add-back-btn="true" data-back-btn-text="Zurück">
<div data-role="header" data-position="fixed" data-tap-toggle="false">
<h1>Macrosystem Moon</h1>
<div data-role="navbar">
<ul>
<li><a href="index.html">Startseite</a></li>
<li><a href="impressum.html">Impressum</a></li>
</ul>
</div>
</div>
<div data-role="content" id="Info">
<div data-role="collapsible" data-theme="a" data-content-theme="a">
<h3>Allgemeines</h3>
<p>Was viele nicht wissen, aber allgemein belegtes Faktum ist:
Der Mond ist aus Käse</p>
</div>
</div>
<div data-role="footer" data-position="fixed" data-fullscreen="true">
<a href="#popupBasic" data-rel="popup">Impressum</a>
</div>
<div data-role="popup" id="popupBasic">
<p>Dieses ist das Impressum. Wilkommen!! Setzt Euch. Tee? Kaffee?<p>
</div>
</div>
</body>
</html>