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


<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Привет</title>
<style>
    .text span:nth-child(1) { font-size: 40px; color: red; }
    .text span:nth-child(2) { font-size: 36px; color: orange; }
    .text span:nth-child(3) { font-size: 32px; color: yellow; }
    .text span:nth-child(4) { font-size: 28px; color: green; }
    .text span:nth-child(5) { font-size: 24px; color: blue; }
    .text span:nth-child(6) { font-size: 20px; color: purple; }
</style>
</head>
<body>

<div class="text">
    <span>П</span>
    <span>Р</span>
    <span>И</span>
    <span>В</span>
    <span>Е</span>
    <span>Т</span>
</div>

</body>
</html>