41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|     <head>
 | |
|         <meta charset="utf-8">
 | |
|         <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
| 
 | |
|         <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 class="spacer"></div>
 | |
|             <button id="dropdown-button">≡</button>
 | |
|             <div id="dropdown">
 | |
|                 <a href="https://tpho.dk">based site</a>
 | |
|                 <a href="https://tpho.dk">based site</a>
 | |
|             </div>
 | |
|         </div>
 | |
|         <main>
 | |
|             <form id="search-bar">
 | |
|                 <input id="search-input" type="text" placeholder="Postnummer" maxlength="4">
 | |
|                 <button id="search-button" type="submit">Search</button>
 | |
|             </form>
 | |
|             <img src="assets/map.jpg" id="map">
 | |
|             <div id="dot"></div>
 | |
|             <div id="info">
 | |
|                 <p id="zip-code">Postnummer ikke fundet</p>
 | |
|                 <p id="mouse-position"></p>
 | |
|                 <p id="coords"></p>
 | |
|             </div>
 | |
|         </main>
 | |
|         <div id="tooltip"></div>
 | |
|     </body>
 | |
| </html>
 |