Add Title specs

This commit is contained in:
Jeremy Thomas
2021-11-01 23:07:12 +00:00
parent 1829e07f72
commit 07f32233dd
2 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
---
layout: cypress
title: Elements/Title
---
<h1 id="title" class="title">
Title <strong>strong</strong>
</h1>
{% for i in (1..7) %}
<p id="title-{{ i }}" class="title is-{{ i }}">
Title <strong>size {{ i }}</strong>
</p>
{% endfor %}
<h1 id="subtitle" class="subtitle">
Subtitle <strong>strong</strong>
</h1>
{% for i in (1..7) %}
<p id="subtitle-{{ i }}" class="subtitle is-{{ i }}">
Subtitle <strong>size {{ i }}</strong>
</p>
{% endfor %}