projects.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <html>
  2. <header>
  3. <script
  4. src="https://code.jquery.com/jquery-3.5.1.min.js"
  5. integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
  6. crossorigin="anonymous"></script>
  7. <link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
  8. <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
  9. <link rel="stylesheet" href="static/style.css"/>
  10. <script>
  11. $(function(){
  12. $("#header").load("header.html");
  13. });
  14. </script>
  15. </header>
  16. <body>
  17. <div id="header"></div>
  18. <div>
  19. <p class="text-center roboto500">
  20. Projects
  21. </p>
  22. </div>
  23. <div class="project">
  24. <img src="static/mainmenu.png" class="project-img"/>
  25. <div class="project-tab">
  26. <p class="project-title text-center">
  27. <a href="panorama/index.html" style="text-decoration: underline;">Minecraft Panorama Seed</a>
  28. </p>
  29. <p class="project-text text-center">
  30. A project to find main menu background seed started by Tomlacko.
  31. </p>
  32. </div>
  33. </div>
  34. </body>
  35. </html>