Week 1, A-Thx (Copy 608)
✨ นายณัฐนันท์ เบญจกรณ์
<html> <head> <title>Let's Start </title> <style> body{ background:#eee; margin:2em; font-family:sans-serif; } .namecard{ width:80%; margin:auto; text-align:center; background:black; padding:2em; border-radius:15px; transition: .5s; } .namecard:hover{ background:skyblue; transition: .5s; } .title{ color:#eee; } a{ color:#eee; } a:hover{ color:red; } </style> </head> <body> <!-- ให้แนะนำตัวเองพร้อมใส่ลิงค์ไปเฟสบุ๊คพี่ๆ --> <div class="namecard"> <h1 class="title"> Oak </h1> <p class="title"> สวัสดีครับผมโอ๊ค ชอบมึนชอบเบลอครับ </p> <a href="https://www.facebook.com/profile.php?id=100010523205274" target="_blank">Contact</a> </div> </body> </html>