<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Задание</title>
<style>
.box {
width: 600px;
height: 200px;
position: relative;
margin: 50px auto;
font-family: Arial, sans-serif;
}
.left {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
font-size: 32px;
}
.center {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
font-size: 32px;
}
.right-top {
position: absolute;
top: 0;
right: 0;
font-size: 24px;
}
</style>
</head>
<body>
<div class="box">
<div class="left">ПРИвет</div>
<div class="center">ПрИвЕт</div>
<div class="right-top">пРИВЕТ</div>
</div>
</body>
</html>