Загрузка данных


Скопируйте следующий HTML код себе на страницу:

<h1>Main page title</h1>
<p>
	This is a paragraph with text.
</p>

<h2>Secondary heading 1</h2>
<p>
	This is a paragraph with text.
</p>
<p>
	This is a paragraph with text.
</p>

<h2>Secondary heading 2</h2>
<p>
	This is a paragraph with text.
</p>
<p>
	This is a paragraph with text.
</p>
Установите заголовку h1 размер шрифта в 50px и выравнивание по центру, заголовкам h2 размер шрифта в 40px и отмените жирность, а абзацам установите шрифт в 30px.

h1 {
    text-align: center;
    font-size: 50px;
}
h2 {
    font-weight: normal;
    font-size: 40px;
}
p {
    font-size: 30px;
}