Week 1 (Branch 635)
✨ นายพฤฒพงศ์ สุขเจริญ
<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:white; padding:2em; transition: transform .2s; } .namecard:hover { -ms-transform: scale(1.1); -webkit-transform: scale(1.1); transform: scale(1.1); } .title{ color:deeppink; } a{ color:red; } </style> </head> <body> <!-- ให้แนะนำตัวเองพร้อมใส่ลิงค์ไปเฟสบุ๊คพี่ๆ --> <div class="namecard"> <h1 class="title"> Pruktapong Sukjaroen </h1> <p> สวัสดีครับผมชื่อ โอ๊ต นะครับ <br> "เรียนน้อยๆ ไม่เข้าใจมากๆ" </p> <a href="https://www.facebook.com/profile.php?id=100009616032530">Pruktapong Sukjaroen</a> </div> </body> </html>