Repeat Signage V5 help

Repeat Signage Basic HTML 

Help home

Repeat Signage digital signage software


Repeat Signage Basic HTML

HTML is the language used to create website pages.  It uses tags so that text can be formatted.  For example, the text:

The quick brown fox jumped over the lazy dog

The lazy dog is in bold.  The code to get the last two  words in bold is to surround them with <strong> tags:

The quick brown fox jumped over the <strong>lazy dog</strong>

The Repeat Signage data grid control support the following HTML formatting commands.   Please email support @ repeatsoftware.com if you need any help with this.


Supported Tags 

Tag

End Tag

Description

<font>

N/A

Font Family

<color>

N/A

Text color

<size>

N/A

Font size

<b>, <strong>

</b>, </strong>

Bold

<i>, <em>

</i>, </em>

Italic

<u>

</u>

Underlined text

<br>

N/A

Line break

<p>

</p>

Paragraph

<span>

</span>

Span. There is limited support of the style attribute and the CSS properties: font-family, font-size, color, and background-color. Refer to the example below. The Span tag is preferable to font, color, and size tags.

<ol>

</ol>

Ordered list

<ul>

</ul>

Unordered list

<li>

</li>

List item. Defines a list item in an ordered or unordered list.

<strike>

</strike>

Striked text

 

  • Bold, italic, and underline

    In the example below the first word is italic and the second one is both bold and italic. The third and the forth words are underlined.

    [HTML] Bold, italic, underline
    <html>
      <b>some <i> text </i></b><u> some text </u>
    </html>
  • Paragraphs

    [HTML] Paragraphs
    <html>
      <p>First paragraph</p>
      <p>Second paragraph</p>
    </html>
  • Font color

    Font color using color name e.g. red or using hex color e.g. 0000FF.

    [HTML] Font color
    <html>
      <span style="color:red">font color (color name) </span>
      <span style="color:#0000FF">font color (hex color) </span>
    </html>
  • Font size

    Absolute and relative font sizes. The valid relative values are larger and smaller. The absolute valid values are: xx-small, x-small, small, medium, large, x-large, and xx-large. The default value is medium. Font size can also be set in pt(s). The default font size in Windows Forms on most computers is 8.25pt.

    [HTML] Font size
    <html>
      <span style="font-size:large">font size(absolute) </span>
      <span style="font-size:12">font size in pt(s) (absolute) </span>
      <span style="font-size:smaller">font size(absolute) </span>
    </html>
  • Highlighted text

    [HTML] Highlighted text
    <html><span style="background-color:red">Highlighted Text</span></html>
  • Font family

    [HTML] Font family
    <html><span style="font-family:georgia">Font Family</span></html>
  • Striked text

    [HTML] Striked text
    <html><strike> Some text </strike></html>