Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <!-- Required meta tags -->
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <!-- Bootstrap CSS -->
  8. <link rel="stylesheet" href="css/bootstrap.min.css">
  9. <link rel="stylesheet" type="text/css" href="css/datatables.bootstrap4.min.css"/>
  10. <link href="css/scrolling-nav.css" rel="stylesheet">
  11. <title>Hello, world!</title>
  12. </head>
  13. <body>
  14. <body id="page-top">
  15. <!-- Navigation -->
  16. <nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top" id="mainNav">
  17. <div class="container">
  18. <a class="navbar-brand js-scroll-trigger" href="#page-top">Start Bootstrap</a>
  19. <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
  20. <span class="navbar-toggler-icon"></span>
  21. </button>
  22. <div class="collapse navbar-collapse" id="navbarResponsive">
  23. <ul class="navbar-nav ml-auto">
  24. <li class="nav-item">
  25. <a class="nav-link js-scroll-trigger" href="#about">About</a>
  26. </li>
  27. <li class="nav-item">
  28. <a class="nav-link js-scroll-trigger" href="#services">Services</a>
  29. </li>
  30. <li class="nav-item">
  31. <a class="nav-link js-scroll-trigger" href="#contact">Contact</a>
  32. </li>
  33. </ul>
  34. </div>
  35. </div>
  36. </nav>
  37. <header class="bg-primary text-white">
  38. <div class="container text-center">
  39. <h1>Welcome to Scrolling Nav</h1>
  40. <p class="lead">A landing page template freshly redesigned for Bootstrap 4</p>
  41. </div>
  42. </header>
  43. <section id="about">
  44. <div class="container">
  45. <div class="row">
  46. <div class="col-lg-8 mx-auto">
  47. <h2>About this page</h2>
  48. <p class="lead">This is a great place to talk about your webpage. This template is purposefully unstyled so you can use it as a boilerplate or starting point for you own landing page designs! This template features:</p>
  49. <ul>
  50. <li>Clickable nav links that smooth scroll to page sections</li>
  51. <li>Responsive behavior when clicking nav links perfect for a one page website</li>
  52. <li>Bootstrap's scrollspy feature which highlights which section of the page you're on in the navbar</li>
  53. <li>Minimal custom CSS so you are free to explore your own unique design options</li>
  54. </ul>
  55. </div>
  56. </div>
  57. </div>
  58. </section>
  59. <section id="services" class="bg-light">
  60. <div class="container">
  61. <div class="row">
  62. <div class="col-lg-8 mx-auto">
  63. <h2>Services we offer</h2>
  64. <p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut optio velit inventore, expedita quo laboriosam possimus ea consequatur vitae, doloribus consequuntur ex. Nemo assumenda laborum vel, labore ut velit dignissimos.</p>
  65. </div>
  66. </div>
  67. </div>
  68. </section>
  69. <section id="contact">
  70. <div class="container">
  71. <div class="row">
  72. <div class="col-lg-8 mx-auto">
  73. <h2>Contact us</h2>
  74. <p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vero odio fugiat voluptatem dolor, provident officiis, id iusto! Obcaecati incidunt, qui nihil beatae magnam et repudiandae ipsa exercitationem, in, quo totam.</p>
  75. </div>
  76. </div>
  77. </div>
  78. </section>
  79. <!-- Footer -->
  80. <footer class="py-5 bg-dark">
  81. <div class="container">
  82. <p class="m-0 text-center text-white">Copyright &copy; Your Website 2020</p>
  83. </div>
  84. <!-- /.container -->
  85. </footer>
  86. <script src="js/jquery-3.5.1.min.js"></script>
  87. <script src="js/bootstrap.bundle.min.js"></script>
  88. <script type="text/javascript" src="js/datatables.bootstrap4.min.js"></script>
  89. <script src="js/jquery.easing.min.js"></script>
  90. <script src="js/scrolling-nav.js"></script>
  91. <script>
  92. $(document).ready(function() {
  93. $('#example').DataTable();
  94. } );
  95. </script>
  96. </body>
  97. </html>