git.ntnlv.ca
Repositories
Help
Report an Issue
faubourg-carte.git
Code
Commits
Branches
Tags
Search
Tree:
2c1b107
Branches
Tags
demo
faubourg-carte.git
index.html
ajout squelette en-tete d'informations
davvalent
commited
2c1b107
at 2023-03-23 15:22:27
index.html
Blame
History
Raw
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" lang="fr-CA"> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>PIFM - Plan interactif du Faubourg à m’lasse</title> <!-- Leaflet --> <link rel="stylesheet" href="css/leaflet.css"/> <script src="js/leaflet.js"></script> <!-- Glide.js --> <script src="js/glide.min.js"></script> <!-- Required Core Stylesheet --> <link rel="stylesheet" href="css/glide.core.min.css"/> <!-- Optional Theme Stylesheet --> <link rel="stylesheet" href="css/glide.theme.min.css"/> <!-- Custom rules --> <link rel="stylesheet" href="css/style.css"/> <!-- <script src="js/window.js"></script> --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/> </head> <body> <header> <div id="information-header"> <p>FOO BAR</p> </div> <div id="application-header"> <h1>Plan interactif du Faubourg à m’lasse <span>v0.1</span></h1> <a href="#" id="icon" onclick="displayInformation()"> <i class="fa fa-bars"></i> </a> </div> </header> <main> <div id="map"></div> </main> <script src="js/main.js" type="module"></script> <script> function myFunction() { const x = document.getElementById("myLinks"); if (x.style.display === "block") { x.style.display = "none"; } else { x.style.display = "block"; } } function displayInformation() { alert("foobar"); } </script> </body> </html>