I have created the Indian flag using HTML and CSS(except the Ashok Chakra). Now I want to create the Irish flag which is just vertical tricolor rather than horizontal tricolor like in case of the Indian flag. So how do I achieve it? I have created these following codes.
body {
  background-color: yellow;
  margin-left: 40%;
  margin-right: 40%;
}
.top {
  background-color: orange;
  width: 320px;
  height: 80px;
}
.mid {
  background-color: white;
  width: 320px;
  height: 80px;
}
.botm {
  background-color: green;
  width: 320px;
  height: 80px;
}<html>
<head>
  <link rel="stylesheet" type="text/css" href="india.css">
  <title>Flag</title>
</head>
<body>
  <div class="top"></div>
  <div class="mid"></div>
  <div class="botm"></div>
</body>
</html> 
     
     
     
     
     
    