<b> Used to display text in bold.
<strong> This tag highlights important text, often rendered as bold, but with semantic meaning.
<i> Used to italicize text, often for technical terms or words in another language.
<em> The EM element is used to display emphatic text.
<a> In HTML, the <a> tag is used to create a hyperlink
<p> This is the tag for a paragraph. It stands for "paragraph" and creates a new paragraph in the text.
<span> Used to group a specific piece of text within a paragraph, often for styling.
<br> Break </br> Means that you can create an enter in your text with this html code.
<u> This creates an underline and underlines your text. </u>
<p style="font-weight: normal">for non-bold text</p>
<p style="font-size: x-small">for a smaller font</p>
<p style="display: none;"> if you don't want to show this text</p>
Hyperlink
You can also include a hyperlink:
<a href="https://www.domeinnaam.nl">Link Name</a>
In addition, you can also have the hyperlink open in a new tab, so that respondents can continue on the questionnaire page:
<a href="https://www.domeinnaam.nl" target="_blank">Link Name</a>