start.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ---
  2. title: Get started with Bulma
  3. layout: documentation
  4. doc-tab: overview
  5. doc-subtab: start
  6. ---
  7. {% include subnav-overview.html %}
  8. <section class="section">
  9. <div class="container">
  10. <h1 class="title"><strong>3</strong> ways to start</h1>
  11. <h2 class="subtitle">You only need <strong>1 CSS file</strong> to use Bulma</h2>
  12. <hr>
  13. <article class="media is-large">
  14. <div class="media-left">
  15. <p class="title is-5">1</p>
  16. </div>
  17. <div class="media-content">
  18. <p class="title is-5">
  19. Use <strong>NPM</strong> <em>(recommended)</em>:
  20. </p>
  21. {% highlight bash %}
  22. npm install bulma
  23. {% endhighlight %}
  24. </div>
  25. </article>
  26. <article class="media is-large">
  27. <div class="media-left">
  28. <p class="title is-5">2</p>
  29. </div>
  30. <div class="media-content">
  31. <p class="title is-5">
  32. Use the <a href="https://cdnjs.com/" target="_blank">cdnjs</a> <strong>CDN</strong>
  33. <br>
  34. <a href="https://cdnjs.com/libraries/bulma">https://cdnjs.com/libraries/bulma</a>
  35. </p>
  36. </div>
  37. </article>
  38. <article class="media is-large">
  39. <div class="media-left">
  40. <p class="title is-5">3</p>
  41. </div>
  42. <div class="media-content">
  43. <p class="title is-5">
  44. Download from the <strong>repository</strong>
  45. <br>
  46. <a href="https://github.com/jgthms/bulma/tree/master/css">https://github.com/jgthms/bulma/tree/master/css</a>
  47. </p>
  48. </div>
  49. </article>
  50. <hr>
  51. <div class="message is-info">
  52. <div class="message-header">
  53. Font Awesome icons
  54. </div>
  55. <div class="message-body">
  56. <p>If you want to use icons with Bulma, don't forget to include <a href="https://fortawesome.github.io/Font-Awesome/">Font Awesome</a>:</p>
  57. {% highlight html %}
  58. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
  59. {% endhighlight %}
  60. </div>
  61. </div>
  62. </div>
  63. </section>