<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Привет</title>
</head>
<body>
<div style="border:2px solid black; width:300px; height:600px; position:relative;">
<!-- СЛЕВА ВВЕРХУ -->
<div style="position:absolute; top:20px; left:20px; font-weight:bold;">
<span style="color:red; font-size:20px;">П</span>
<span style="color:orange; font-size:25px;">Р</span>
<span style="color:yellow; font-size:30px;">И</span>
<span style="color:green; font-size:35px;">В</span>
<span style="color:blue; font-size:40px;">Е</span>
<span style="color:purple; font-size:45px;">Т</span>
</div>
<!-- ПО ЦЕНТРУ -->
<div style="position:absolute; top:250px; left:80px; font-weight:bold;">
<span style="color:red; font-size:45px;">П</span>
<span style="color:orange; font-size:40px;">Р</span>
<span style="color:yellow; font-size:35px;">И</span>
<span style="color:green; font-size:30px;">В</span>
<span style="color:blue; font-size:25px;">Е</span>
<span style="color:purple; font-size:20px;">Т</span>
</div>
<!-- СПРАВА ВНИЗУ (ПОВОРОТ) -->
<div style="position:absolute; bottom:20px; right:20px; font-weight:bold; transform:rotate(90deg);">
<span style="color:red; font-size:20px;">П</span>
<span style="color:orange; font-size:25px;">Р</span>
<span style="color:yellow; font-size:30px;">И</span>
<span style="color:green; font-size:35px;">В</span>
<span style="color:blue; font-size:40px;">Е</span>
<span style="color:purple; font-size:45px;">Т</span>
</div>
</div>
</body>
</html>