cannabinieri website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.3 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Cannabinieri - Flower</title>
  5. <meta charset="UTF-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
  8. <link rel="stylesheet" type="text/css" href="../css/nav.css">
  9. <link rel="stylesheet" type="text/css" href="../css/footer.css">
  10. <link rel="stylesheet" type="text/css" href="../css/global.css">
  11. <link rel="stylesheet" type="text/css" href="../css/flower.css">
  12. <link rel="icon" href="../img/Logo.svg">
  13. <script src="../jquery/jquery-3.5.1.min.js"></script>
  14. <script>
  15. $(document).ready(function(){
  16. $('#top-nav').load("../components/top-nav.html");
  17. });
  18. </script>
  19. <script>
  20. $(document).ready(function(){
  21. $('#main-nav').load("../components/main-nav.html");
  22. });
  23. </script>
  24. <script>
  25. $(document).ready(function(){
  26. $('#content').load("../components/flower-content.html");
  27. });
  28. </script>
  29. <script>
  30. $(document).ready(function(){
  31. $('#footer').load("../components/footer.html");
  32. });
  33. </script>
  34. <script src="../js/main.js" defer></script>
  35. </head>
  36. <body>
  37. <div class="global-wrapper">
  38. <div id="top-nav"></div>
  39. <div id="main-nav"></div>
  40. <div id="content"></div>
  41. <div id="footer"></div>
  42. </div>
  43. </body>
  44. </html>