HTML elements
Written by
Updated at April 25, 2024
Tags
New editor
Old editor
Alert
The new editor uses Yandex Flavored Markdown
In this editor, the inserted HTML code will be displayed as text:
For example:
<table border="1">
<tr><td>Value 1</td><td>Value 2</td></tr>
<tr><td>Value 3</td><td>Value 4</td></tr>
</table>
See the result
<table border="1">
<tr><td>Value 1</td><td>Value 2</td></tr>
<tr><td>Value 3</td><td>Value 4</td></tr>
</table>
In this editor, we recommend adding your HTML code to the page using the visual editor. Use the button on the taskbar to insert the code.
Alert
Concurrent use of HTML and Wiki markup may cause unpredictable errors in HTML. This is due to markup overlaps and, consequently, violations of the page structure.
To insert on a page design elements that are not included in the Markdown markup language, you can use HTML tags in the text.
For example:
-
<p style="color: gray; font-weight: bold;">Text in gray</p>
See the result
Text in gray
-
<p style="border-width: 4px; border-style: double; border-color: orange;">Text in a border</p>
See the result
Text in a border
-
<table border="1"> <tr><td>Value 1</td><td>Value 2</td></tr> <tr><td>Value 3</td><td>Value 4</td></tr> </table>
See the result
Value 1 Value 2 Value 3 Value 4