2023-02-06 15:48:11 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2023-02-06 20:11:19 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
2023-02-06 15:48:11 +00:00
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<script src="bundle.js" defer></script>
|
|
|
|
<title>Postnummer App</title>
|
2023-02-06 18:39:22 +00:00
|
|
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
|
2023-02-06 15:48:11 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="topbar">
|
2023-02-06 18:39:22 +00:00
|
|
|
<h1>Postnummer App</h1>
|
2023-02-08 10:40:31 +00:00
|
|
|
<div class="spacer"></div>
|
|
|
|
<button id="dropdown-button">≡</button>
|
|
|
|
<div id="dropdown">
|
2023-02-09 13:54:42 +00:00
|
|
|
<button id="map-redirect">Kort</button>
|
|
|
|
<button id="reviews-redirect">Anmeldelser</button>
|
2023-02-08 10:40:31 +00:00
|
|
|
</div>
|
2023-02-06 15:48:11 +00:00
|
|
|
</div>
|
2023-02-09 13:54:42 +00:00
|
|
|
<main id="main">
|
2023-02-06 19:28:16 +00:00
|
|
|
<form id="search-bar">
|
|
|
|
<input id="search-input" type="text" placeholder="Postnummer" maxlength="4">
|
|
|
|
<button id="search-button" type="submit">Search</button>
|
|
|
|
</form>
|
2023-02-08 10:40:31 +00:00
|
|
|
<img src="assets/map.jpg" id="map">
|
2023-02-08 08:23:27 +00:00
|
|
|
<div id="dot"></div>
|
2023-02-09 09:03:36 +00:00
|
|
|
<div id="boundary"></div>
|
2023-02-06 20:11:19 +00:00
|
|
|
<div id="info">
|
2023-02-08 10:40:31 +00:00
|
|
|
<p id="zip-code">Postnummer ikke fundet</p>
|
|
|
|
<p id="mouse-position"></p>
|
|
|
|
<p id="coords"></p>
|
2023-02-06 20:11:19 +00:00
|
|
|
</div>
|
2023-02-06 15:48:11 +00:00
|
|
|
</main>
|
2023-02-08 10:44:19 +00:00
|
|
|
<div id="tooltip"></div>
|
2023-02-06 15:48:11 +00:00
|
|
|
</body>
|
|
|
|
</html>
|