...
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> |
|
Font Color & Sizes
For combining both font color & sizes, use this HTML code:
Code Block |
---|
language | html/xml |
---|
theme | Confluence |
---|
title | HTML Code Font Sizes |
---|
|
<p style="font-weight:normal;">Here is a selection of text styles:</p>
<p style="color:red; font-size:75%;">small and red</p>
<p style="color:green; font-weight:bold; font-size:150%;">bold, large and green</p>
<p style="color:blue; font-family: monospace;">blue monospace</p>
<p style="display:block; padding:5px; border:1px black</p> |
Panel |
---|
borderColor | grey |
---|
bgColor | azul |
---|
titleColor | black |
---|
titleBGColor | lemonchiffon |
---|
borderStyle | solid |
---|
title | Combining Color and Size |
---|
|
Html bobswift |
---|
<p style="font-weight:normal;">Here is a selection of text styles:</p>
<p style="color:red; font-size:75%;">small and red</p>
<p style="color:green; font-weight:bold; font-size:150%;">bold, large and green</p>
<p style="color:blue; font-family: monospace;">blue monospace</p>
<p style="display:block; padding:5px; border:1px black</p> |
|
Font Sizes
For different font sizes, use this HTML code:
...