-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapslist.html
111 lines (110 loc) · 3.03 KB
/
mapslist.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
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html manifest="c.appcache">
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Chantry Maps</title>
<style>
body {
font-family:Arial,Helvetica,sans-serif;font-size:14px;
}
h1 {
display: block;
font-size: 2em;
margin-top: 0.67em;
margin-bottom: 0.67em;
margin-left: 0.5em;
margin-right: 0.5em;
font-weight: bold;
}
h2 {
display: block;
font-size: 1.5em;
margin-top: 0.3em;
margin-bottom: 0.3em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
}
td {
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}
table {
-webkit-border-radius: 23px;
-moz-border-radius: 23px;
border-radius: 23px;
}
#extraroundedtable {
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
}
</style>
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="512x512" href="icon.png">
<link rel="icon" href="favicon.gif">
<meta name="application-name" content="Chantry Maps">
<meta name="msapplication-TileColor" content="#000000" />
<meta name="msapplication-square70x70logo" content="icon.png">
<meta name="msapplication-square150x150logo" content="icon.png">
<meta name="msapplication-wide310x150logo" content="iconwide.png">
<meta name="msapplication-square310x310logo" content="icon.png">
</head>
<body bgcolor="#666666" link="#ffffff" text="#ffffff" vlink="#ffffff" alink="#ffffff">
<br>
<table id="extraroundedtable" bgcolor="#333333" border="0" cellpadding="5" cellspacing="5" align="center">
<tbody>
<tr>
<td valign="middle" align="center">
<table border="0" cellpadding="5" cellspacing="5" width="100%" align="center">
<tbody>
<tr>
<td valign="top" width="50" align="left"><a href="index.html"><img src="i/backbuttonicon3.png" alt="Back" border="0" height="75" width="75"></a></td>
<td valign="middle" align="center"><h1>Maps List</h1></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="middle" align="center">
<table width="100%" bgcolor="#c0c0c0" border="0" cellpadding="8" cellspacing="8" align="center">
<tbody>
<tr>
<td onclick="window.location.href = 'local.html'" bgcolor="#666666" valign="middle" align="center">
<h2>Ipswich Local<br>
<small>
<i>(Chantry Estate)</i>
</small>
</h2>
</td>
</tr>
<tr>
<td onclick="window.location.href = 'hadleigh.html'" bgcolor="#990000" valign="middle" align="center">
<h2>Hadleigh Local<small>
<i>
<br> (Hadleigh Town)</i>
</small>
</h2>
</td>
</tr>
<tr>
<td onclick="window.location.href = 'rural.html'" bgcolor="#006600" valign="middle" align="center">
<h2>Rural Maps<br>
<small>
<i>(All Rural Maps)<br>
</i>
</small>
</h2>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>