Week 1 (Branch 598)
✨ NATNICHA LOWCHOWNA
<html> <head> <title>Let's Start </title> <style> body{ background:darkgray; margin:2em; font-family:sans-serif; } .namecard{ width:50%; margin:auto; text-align:center; background:LightPink; padding:2em; border-radius:15px; transition: .5s; } .namecard:hover{ width:50%; margin:auto; text-align:center; background:Darkred; padding:2em; border-radius:15px; transition: .5s; } .title{ color:white; } a{ color:white; } a:hover{ color:Tomato; } </style> </head> <body> <!-- ให้แนะนำตัวเองพร้อมใส่ลิงค์ไปเฟสบุ๊คพี่ๆ --> <div class="namecard"> <h1 class="title"> Natnicha Lowchowna </h1> <p class="title"> สวัสดีค่า ชื่อเล่นชื่ออั้มนะคะ </p> <a href="https://www.facebook.com/nat.cha.37017/" target="_blank">Facebook</a> </div> </body> </html>