-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (63 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/mainpage.css"/>
<meta charset="UTF-8">
<title>Sportfinder</title>
<script language="javascript" type="text/javascript" src="javascript/map.js"></script>
<script src="http://maps.googleapis.com/maps/api/js"></script>
</head>
<body>
<header>
<a href="index.html">
<h1><b>Sportfinder</b></h1>
</a>
</header>
<script>google.maps.event.addDomListener(window, 'load', initialize);</script>
<div id="googleMap"></div>
<article>
<h1>
Sportvereine
</h1>
<table>
<tr>
<td><img src="../MMe/pics/JcB.png"> </td>
<td class="tabletext">Judoclub Berlin</td>
<td class="tabletext">12345 Chalottenburg</td>
<td class="tabletext">[email protected]</td>
<td class="tabletext">0301234567</td>
<td><button class="pure-button button-secondary">Delete</button>
<a href="html/addclub.html">
<input type="button" value="New" class="pure-button button-secondary " />
</a>
</td>
<tr>
<td><img src="../MMe/pics/KW.png"> </td>
<td class="tabletext">Karate Wedding</td>
<td class="tabletext">13456 Wedding</td>
<td class="tabletext">[email protected]</td>
<td class="tabletext">0301234567</td>
<td><button class="pure-button button-secondary">Delete</button>
<a href="html/addclub.html">
<input type="button" value="New" class="pure-button button-secondary " />
</a>
</td>
</tr>
</table>
<br />
<a href="html/addclub.html">
<input type="button" value="New" class="pure-button button-color bigger-button" />
</a>
<a href="html/find.html">
<input type="button" value="Find" class="pure-button button-color bigger-button" />
</a>
<a href="html/show-all.html">
<input type="button" value="Show all" class="pure-button button-color bigger-button" />
</a>
<br />
</article>
<footer>
<p>Copyright Christoph Stumpe, Sebastian Nieling</p>
</footer>
</body>
</html>