ITx Workshop (Copy 9168)
✨ PHURI SIRIPOOL
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>ITx Workshop</title> <style> body { display: flex; align-items: center; flex-direction: column; justify-content: center; min-height: 100vh; } .flag { /*Set height to 300px & Set width to 500px*/ /* กำหนดความยาวและความสูงของธงชาติ */ height: 300px; width: 500px; } .red { /*Set background-color & Set height 15%*/ background-color: #A51931; height: 15%; } .white { /*Set background-color & Set height 15%*/ background-color: #F4F5F8; height: 15%; } .red2 { /*Set background-color & Set height 30%*/ height: 30%; background-color: #A51931 } </style> </head> <body> <div class="flag"> <div class="red"></div> <div class="white"></div> <div class="red2"></div> <div class="white"></div> <div class="red"></div> </div> <h1>ไทย</h1> <p> <!-- Caption something for Thailand --> สีธงชาติในฝัน </p> </body> </html>