HTML Styling Options


*Note* Remember to take a copy of the original form code, and to send the latest version to Ctrl Hub.

To make a word or sentence or paragraph bold we would use the below:

"html": "<b>This is some Text</b>"


To add bullet points you would use the below:

"html": "<li>This is some Text"</li>


To spread some text to a list you would add <br> to the beginning of each line.


To do a mixture of bold, bullet point and list, would look like this:

"html": "<b>1. Establish the facts of the incident, including:</b><br><li>What happened?<br><li>When and where did it happen?<br><li>What task was being done?<br><li>Who was involved?<br><li>Were there any witnesses?"


And would show as 


1. Establish the facts of the incident, including:

  • What happened?
  • When and where did it happen?
  • What task was being done?
  • Who was involved?
  • Were there any witnesses?

To have some text to show in italics:

"html": "<em>This is some Text</em>"


If you want to underline some text:

"html": "<u>This is some Text</u>"



HTML Colours


To change the font of a word or sentence into colour you can use the following:


<strong style='color:blue'>Some Text</strong> - Blue

<strong style='color:blue'>Some Text</strong>  - Green

<strong class=\"text-danger\">Some Text</strong> - Red


In some occasions you may want to use a different colour, and you would use a hex code instead of a word:

<strong style='color:#ffbf00'>Note 1</strong>   -  Amber


You can find hex codes here https://htmlcolorcodes.com/colors/ (Some hex codes may not work)


This is how it would look in code:


"section_1_1_html_0": {

"type": "HTML",

"options": {

"html": "<strong style='color:#ffbf00'>This is some Text</strong>"

}

},


Alert Box


To create an alert box on an HTML


<p class=\"alert alert-success\">The text in an alert</p> - Green

<p class=\"alert alert-warning\">The text in an alert</p> - Yellow

<p class=\"alert alert-danger\"> The text in an alert</p> - Red

<p class=\"alert alert-info\">The text in an alert</p> -  Blue


An example how it would appear in code:


"section_1_1_html_0": {

"type": "HTML",

"options": {

"html": "<p class=\"alert alert-success\">A green alert box</p>"