You can style your fonts in three basic ways:
Bold face font, Italics font, and bold&italics font together.
To make a format bold you will have to use this HTML code:
...
Panel |
---|
borderColor | gray |
---|
bgColor | azur |
---|
titleColor | black |
---|
borderWidth | 1 |
---|
titleBGColor | lemonchiffon |
---|
borderStyle | solid |
---|
title | Browser Results Bold |
---|
|
Html bobswift |
---|
<strong>This text is bold.</strong> |
|
To make a format italics you will use this HTML code:
...
Panel |
---|
borderColor | grey |
---|
bgColor | azul |
---|
titleColor | black |
---|
titleBGColor | lemonchiffon |
---|
borderStyle | solid |
---|
title | Browser Results Italics |
---|
|
Html bobswift |
---|
<em>Do this and your text will be in italics style.</em> |
|
To make a format italics and bold, you will use the HTML code:
...
Panel |
---|
borderColor | grey |
---|
bgColor | azul |
---|
titleColor | black |
---|
titleBGColor | lemonchiffon |
---|
borderStyle | solid |
---|
title | Browser Results Italics&Bold |
---|
|
Html bobswift |
---|
<strong><em>To get your text italics and bold, do this.</em></strong> |
|
Another couple of different simple formatting options you can do in REDCap surveys or forms is having different font colors and font sizes.
...
All you have to do is use/copy these HTML Codes:
To make a words in REDCap have font colors, use this HTML code:
...
Panel |
---|
borderColor | grey |
---|
bgColor | azul |
---|
titleColor | black |
---|
titleBGColor | lemonchiffon |
---|
borderStyle | solid |
---|
title | Browser Results Font Color |
---|
|
Html bobswift |
---|
<font color="red">This color will be red.</font>
<font color="purple">This color will be purple.</font>
<font color="green">This color will be green.</font>
<font color="blue">This color will be blue.</font> |
|
For different font sizes, use this HTML code:
...
Panel |
---|
borderColor | grey |
---|
bgColor | azul |
---|
titleColor | black |
---|
titleBGColor | lemonchiffon |
---|
borderStyle | solid |
---|
title | Browser Results Font Sizes |
---|
|
Html bobswift |
---|
<div style="font-size: 10pt">This is how you change the size of the font.</div>
<div style="font-size: 14pt">This is how you change the size of the font.</div>
<div style="font-size: 20pt">This is how you change the size of the font.</div>
<div style="font-size: 22pt">This is how you change the size of the font.</div>
|
|
For combining both font color & sizes, use this HTML code:
...