---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://yandex.ru/support/wiki/en/static-markup/html-code.md
  - https://yandex.ru/support/wiki/ru/static-markup/html-code.md
  - href: en/static-markup/html-code.md
    type: text/markdown
    title: Markdown version
  - href: ../llms.txt
    type: text/markdown
    title: llms.txt
title: "HTML elements available in Yandex\_Wiki"
description: "In this tutorial, you will learn what HTML elements\_are available in Wiki."
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.ru/support/wiki/en/llms.txt


# HTML elements in the old editor

{% note info "" %}

For information on how to work with HTML in the new editor, see [Block with HTML markup](https://yandex.ru/support/wiki/en/wysiwyg/html-block.md).

{% endnote %}

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.

If you want to add formatting elements that aren't included in the standard formatting options, you can use HTML tags directly in your text.

For example:

* ```html
   <p style="color: gray; font-weight: bold;">Text in gray</p>
   ```
   {% cut "Result" %}

<p style="color: gray; font-weight: bold;">Text in gray</p>

   {% endcut %}

* ```html
   <p style="border-width: 4px; border-style: double; border-color: orange;">Text in a border</p>
   ```

   {% cut "Result" %}

<p style="border-width: 4px; border-style: double; border-color: orange;">Text in a border</p>

   {% endcut %}

* ```html
   <table border="1">
   <tr><td>Value 1</td><td>Value 2</td></tr>
   <tr><td>Value 3</td><td>Value 4</td></tr>
     </table>
     ```

{% cut "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>

{% endcut %}

