今天是HTML5的生日,我們來一起制作一張HTML5生日賀卡吧!
首先,我們需要一個HTML5文檔結(jié)構(gòu):
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>HTML5生日賀卡</title> </head> <body> <h1>Happy Birthday, HTML5!</h1> <p>祝福HTML5生日快樂,越來越強大!</p> </body> </html>
接下來,我們給賀卡添加一些樣式:
<style> body { background-color: #fdebd3; font-family: Arial, sans-serif; text-align: center; } h1 { color: #c0392b; font-size: 48px; margin-top: 100px; } p { color: #34495e; font-size: 24px; } </style>
最后,我們加入一張圖片,讓賀卡更加生動:
<body> <h1>Happy Birthday, HTML5!</h1> <p>祝福HTML5生日快樂,越來越強大!</p> <img src="html5-birthday.jpg" alt="HTML5生日賀卡"> </body>
完成啦!快去分享你制作的HTML5生日賀卡吧!