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.

54 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
3 years ago
3 years ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Cannabinieri - GreenTech</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/greentech.css">
  12. <link rel="icon" type="image/webp" href="img/Logo.svg">
  13. <script type="text/javascript" src="jquery/jquery-3.5.1.min.js"></script>
  14. <script>
  15. $(document).ready(function(){
  16. //check MIME type before loading
  17. $('#top-nav').load("components/top-nav.html");
  18. });
  19. </script>
  20. <script>
  21. $(document).ready(function(){
  22. $('#main-nav').load("components/main-nav.html");
  23. });
  24. </script>
  25. <script>
  26. $(document).ready(function(){
  27. $('#content').load("components/greentech-content.html");
  28. });
  29. </script>
  30. <script>
  31. $(document).ready(function(){
  32. $('#footer').load("components/footer.html");
  33. });
  34. </script>
  35. <script type="text/javascript" src="js/main.js"></script>
  36. </head>
  37. <body>
  38. <div class="global-wrapper">
  39. <div id="top-nav"></div>
  40. <div id="main-nav"></div>
  41. <div id="content"></div>
  42. <div id="footer"></div>
  43. </div>
  44. </body>
  45. </html>