30 lines
917 B
HTML
30 lines
917 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="bundle.js" defer></script>
|
|
<title>Postnummer App</title>
|
|
|
|
<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">
|
|
|
|
</head>
|
|
<body>
|
|
<div id="topbar">
|
|
<h1>Postnummer App</h1>
|
|
</div>
|
|
<main>
|
|
<div id="search-bar">
|
|
<input id="search-input" placeholder="Postnummer">
|
|
<button id="search-button">Search</button>
|
|
</div>
|
|
<img src="map.jpg" id="map"><br>
|
|
<p id="mouse-position"></p>
|
|
<p id="coords"></p>
|
|
<p id="zip-code"></p>
|
|
</main>
|
|
</body>
|
|
</html>
|