CSS Flag Project

PKH·2023년 6월 8일
0

into_fintech

목록 보기
6/11
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <title>CSS Flag Project</title>
  <style>
    .flag {
      width: 900px;
      height: 600px;
      background-color: rgb(206, 17, 38);
      position: relative;
    }
    .flag > p {
      color: white;
      font-size: 75px;
      text-align: center;
    }
    .flag > div {
      background-color: rgb(0, 40, 104);
      height: 300px;
      width: 100%;
      position: absolute;
      top: 150px;
    }
    .flag div div {
      border-radius: 50%;
      background-color: white;
      width: 200px;
      height: 200px;
      top: 50px;
      left: 350px;
      position: relative;

    }
    div, p {
      margin: 0px;
    }
    .flag div p {
      font-size: 75px;
      text-align: center;
    }
    
  </style>
</head>
<body>
  <div class="flag">
    <p>The Flag</p>
    <div>
      <div>
        <p>of Laos</p>
      </div>
    </div>
  </div>
</body>

</html>

0개의 댓글