Week 1 – A-Faii (Branch 498)
✨ THANADET SACCHUA
<html> <head> <title>Let's Start </title> <style> body{ background:#eee; margin:2em; font-family:sans-serif; } .namecard{ width:50%; margin:auto; text-align:center; background:lightyellow; padding:2em; } .namecard:hover{ width:50%; margin:auto; text-align:center; background:lightgreen; padding:3em; border-radius:15px; transition: .5s; } .title{ color:red; } a{ color:blue; } </style> </head> <body> <!-- ให้แนะนำตัวเองพร้อมใส่ลิงค์ไปเฟสบุ๊คพี่ๆ --> <div class="namecard"> <h1 class="title"> Thanadet Sacchua </h1> <p> ยินดีที่ได้รู้จักครับ </p> <a href="https://www.facebook.com/profile.php?id=100003016183718">Thanadet Sacchua</a> </div> </body> </html>