HTML: Difference between revisions
mNo edit summary |
m (→Using HTML) |
||
Line 7: | Line 7: | ||
==How HTML relates to the Tygron Engine== | ==How HTML relates to the Tygron Engine== | ||
In the Tygron Engine, there are a number of places where the user is responsible for providing text and information. When that information can be complex, such as the [[Excel]] output for an [[Excel Indicator]], the Engine allows HTML to be used for determining how the information should be laid out. The Engine is effectively HTML5 compliant for these purposes. | In the Tygron Engine, there are a number of places where the user is responsible for providing text and information. When that information can be complex, such as the [[Excel]] output for an [[Excel Indicator]], the Engine allows HTML to be used for determining how the information should be laid out. The Engine is effectively HTML5 compliant for these purposes. | ||
==How HTML is structured== | |||
HTML consists of a number of elements, which are indicated by two tags: an opening and a closing tag. The opening tag indicates where an element starts, and the closing tag indicates where an element finishes. Each tag consists of a word or a few characters, enclosed by less-than and greater-than characters (<code>< and ></code>). | |||
==Using HTML== | ==Using HTML== | ||
The full span of the capabilities of HTML extends far beyond the scope of this wiki. Instead, some basic elements will be explained here which will allow you to tackle most formatting challenges. For further information regarding HTML, CSS and javascript, please refer to other online information sources. | The full span of the capabilities of HTML extends far beyond the scope of this wiki. Instead, some basic elements will be explained here which will allow you to tackle most formatting challenges. For further information regarding HTML, CSS and javascript, please refer to other online information sources. | ||
===Text formatting=== | ===Text formatting=== | ||
====Paragraph==== | For basic text styling, a number of elements exist. | ||
====Headers==== | ====Paragraph: <p>==== | ||
=== | |||
====Horizontal rule: <hr>==== | |||
====Headers: <h1>, <h2>, etc==== | |||
===Table: <table>=== | |||
===Styling=== | ===Styling=== | ||
====Width, Height | ====Width, Height==== | ||
====Align==== | ====Align==== | ||
====Colors==== | ====Colors==== |
Revision as of 12:41, 29 July 2016
HTML
HTML stands for HyperText Markup Language. It is a language used to indicate how text or content should be laid out for display. Along with Cascading Style Sheets (CSS), it is generally used for styling webpages.
How HTML relates to the Tygron Engine
In the Tygron Engine, there are a number of places where the user is responsible for providing text and information. When that information can be complex, such as the Excel output for an Excel Indicator, the Engine allows HTML to be used for determining how the information should be laid out. The Engine is effectively HTML5 compliant for these purposes.
How HTML is structured
HTML consists of a number of elements, which are indicated by two tags: an opening and a closing tag. The opening tag indicates where an element starts, and the closing tag indicates where an element finishes. Each tag consists of a word or a few characters, enclosed by less-than and greater-than characters (< and >
).
Using HTML
The full span of the capabilities of HTML extends far beyond the scope of this wiki. Instead, some basic elements will be explained here which will allow you to tackle most formatting challenges. For further information regarding HTML, CSS and javascript, please refer to other online information sources.
Text formatting
For basic text styling, a number of elements exist.