getting-started.html 626 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Hello Bulma!</title>
  7. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/{{ site.data.meta.version }}/css/bulma.min.css">
  8. <script defer src="{{ site.data.icons.fontawesome5 }}"></script>
  9. </head>
  10. <body>
  11. <section class="section">
  12. <div class="container">
  13. <h1 class="title">
  14. Hello World
  15. </h1>
  16. <p class="subtitle">
  17. My first website with <strong>Bulma</strong>!
  18. </p>
  19. </div>
  20. </section>
  21. </body>
  22. </html>