HTML примеры

1

Заголовок

Параграф


<!DOCTYPE html>
<html>
<body>

<h2>Заголовок</h2>
<p>Параграф</p>

</body>
</html>

2

This is heading 1

This is heading 2

This is heading 3

This is heading 4

This is heading 5
This is heading 6

<html>
<body>

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

</body>
</html>

3

I am normal

I am red

I am blue

I am big


<html>
<body>

<p>I am normal</p>
<p style="color:red;">I am red</p>
<p style="color:blue;">I am blue</p>
<p style="font-size:50px;">I am big</p>

</body>
</html>

4

Hello World

Hello World

Hello World


<html>
<body>

<h1 style="border: 2px solid Tomato;">Hello World</h1>

<h1 style="border: 2px solid DodgerBlue;">Hello World</h1>

<h1 style="border: 2px solid Violet;">Hello World</h1>

</body>
</html>

5

HTML Image

Girl in a jacket
<html>
<body>

<h2>HTML Image</h2>
<img src="https://media0.giphy.com/media/l378gxtNQaXcsqY7K/200w.gif" alt="Girl in a jacket" width="500" height="600">

</body>
</html>