x
1
2
3
4
5
6
<h1 class="title is-1">Title 1</h1>
<h1 class="title is-2">Title 2</h1>
<h1 class="title is-3">Title 3</h1>
<h1 class="title is-4">Title 4</h1>
<h1 class="title is-5">Title 5</h1>
<h1 class="title is-6">Title 6</h1>
1
2
3
4
5
6
<%= bulma_title(size: 1) { 'Title 1' } %>
<%= bulma_title(size: 2) { 'Title 2' } %>
<%= bulma_title(size: 3) { 'Title 3' } %>
<%= bulma_title(size: 4) { 'Title 4' } %>
<%= bulma_title(size: 5) { 'Title 5' } %>
<%= bulma_title(size: 6) { 'Title 6' } %>