Last active
April 20, 2020 06:45
-
-
Save blaurt/8a3a0c9aff6143c7e663cb87d836cd50 to your computer and use it in GitHub Desktop.
Html structure for coord conversion example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Map app</title> | |
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon" /> | |
</head> | |
<body> | |
<header> | |
<h1>Map app</h1> | |
</header> | |
<main> | |
<section> | |
<div> | |
<div class="map"> | |
<img src="images/Mercator-projection.jpg" alt="world map" /> | |
<div id="pointers-container"></div> | |
</div> | |
</div> | |
</section> | |
</main> | |
<link rel="stylesheet" href="styles/main.css" /> | |
<script src="js/main.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment