Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ggaaggaa22855 authored Sep 18, 2024
1 parent d118848 commit d974f4b
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,35 @@
<font color=’#FF0000’>Цвет текста красный</font>
<font color=’red’>Цвет текста красный</font>
<p>H<sub>2</sub>SO<sub>4</sub><sup>конц.</sup></p>

<h2>Типы списков</h2>
<ol>
<li>Нумерованный</li>
<li>Маркированный</li>
<li>Многоуровневый</li>
</ol>
<H2>Маркированный список</H2>
<ul type=’circle’>
<li>Яблоко</li>
<li type=’disk’>Груша</li>
<li>Слива</li>
<li type=’square’>Вишня</li>
<li>Черешня</li>
</ul>
<H2>Многоуровневый список</H2>
<ol>
<li>Нумерованный</li>
<ol>
<li>Пункт 1</li>
<li>Пункт 2</li>
<li>Пункт 3</li>
</ol>
<li>Маркированный</li>
<ul>
<li>Первый вариант</li>
<li>Второй вариант</li>
<li>Третий вариант</li>
</ul>
</ol>

</body>
</html>

0 comments on commit d974f4b

Please sign in to comment.