To format the text of your terms field, HTML markups are supported. Various HTML tags can change how text appears on the form. We can use HTML text formatting tags to bold, italicize, and do more.
Line Breaks
The HTML <br> tag defines a line break. Use <br> if you want a line break (a new line) without starting a new paragraph.
The <br> tag doesn't require a closing tag.
Example:
Formatting Elements
Formatting elements were designed to display special types of text.
The HTML <b> tag defines bold text.
Example:
The HTML <i> tag defines italic text.
Example:
The HTML <mark> tag defines text that should be marked or highlighted.
Example:
Links
The HTML <a> tag defines a hyperlink. It has the following syntax:
<a href="url" target="_blank">link text</a>
The most important attribute of the <a> tag is the href attribute, which indicates the link's destination.
The link text is the part that will be visible to the reader.
The target attribute specifies where to open the link. Use target="_blank" to open the link in a new browser window or tab.
Clicking on the link text will send the reader to the specified URL address.
Example:
0 Comments