<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Russia Flag</title>
<style>
.flag {
width: 600px; /* Set the desired width */
height: 400px; /* Set the desired height */
border: 1px solid black; /* Optional border */
}
.stripe {
height: 33.33%; /* Each stripe takes up 1/3 of the flag height */
}
.white {
background-color: white;
}
.blue {
background-color: blue;
}
.red {
background-color: red;
}
</style>
</head>
<body>
<div class="flag">
<div class="stripe white"></div>
<div class="stripe blue"></div>
<div class="stripe red"></div>
</div>
</body>
</html>