first draft of website
This commit is contained in:
28
index.html
Normal file
28
index.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
<meta name="robots" content="noindex,nofollow" />
|
||||
<title>OSM search to GPX</title>
|
||||
</head>
|
||||
<body class=body>
|
||||
<div class=head>
|
||||
<h3>Export OSM search to GPX file</h3>
|
||||
</div>
|
||||
<div class=box>
|
||||
|
||||
This form allows you to perform a search of the Open Street Map database (via Nominatim) and exports all results as Waypoints in a GPX file.
|
||||
|
||||
<form action=search.py method=post>
|
||||
<input name=query placeholder=Camping></input> Your search query<br>
|
||||
<input type= name=></input> (optional)<br>
|
||||
<input type= name=></input> (optional)<br>
|
||||
<input name= ></input> (optional)<br>
|
||||
<input type=submit name="Submit"><br>
|
||||
</form>
|
||||
</div>
|
||||
<div class=foot>
|
||||
OSMsearchToGPX - ein Service von <a href=https://dukun.de>dukun.de</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
36
style.css
Normal file
36
style.css
Normal file
@@ -0,0 +1,36 @@
|
||||
div.box {
|
||||
color:#cecece;
|
||||
background-image: url('/linen_login.jpg');
|
||||
background-size: 100%;
|
||||
width: 80%;
|
||||
height: 80%;
|
||||
margin: 0px auto;
|
||||
overflow: auto;
|
||||
padding:10px;
|
||||
border-radius:10px;
|
||||
box-shadow: 0px 0px 20px #000;
|
||||
}
|
||||
|
||||
body {
|
||||
background-image:url('/linen.jpg');
|
||||
background-repeat:repeat;
|
||||
}
|
||||
|
||||
div.head {
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
div.foot {
|
||||
width: 80%;
|
||||
margin:auto;
|
||||
margin-top:20px;
|
||||
}
|
||||
|
||||
div.foot a {
|
||||
color: #0000aa;
|
||||
}
|
||||
|
||||
a {
|
||||
color:#8080ee;
|
||||
}
|
||||
Reference in New Issue
Block a user