<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Flag</title>
<style>
.flag {
width: 300px; /* Set your desired width */
height: 200px; /* Set your desired height */
position: relative;
border: 2px solid black; /* Add a border */
}
.stripe {
width: 100%;
height: 33.33%;
}
.black {
background-color: black;
}
.white {
background-color: white;
}
.green {
background-color: green;
}
.triangle {
width: 0;
height: 0;
border-top: 100px solid transparent;
border-bottom: 100px solid transparent;
border-left: 100px solid red;
position: absolute;
left: 0;
top: 0;
}
</style>
</head>
<body>
<div class="flag">
<div class="stripe black"></div>
<div class="stripe white"></div>
<div class="stripe green"></div>
<div class="triangle"></div>
</div>
</body>
</html>