HTML生日代碼文本
<!DOCTYPE html> <html> <head> <title>My Birthday</title> <style> body { background-color: #f5f5f5; color: #333; font-family: Arial, sans-serif; } h1 { text-align: center; } img { display: block; margin: 0 auto; } ul { list-style: none; text-align: center; padding: 0; } li { display: inline-block; margin: 10px; } a { color: #333; text-decoration: none; } a:hover { color: #f44336; } </style> </head> <body> <h1>Happy Birthday to Me!</h1> <img src="birthdaycake.jpg" alt="birthday cake"> <ul> <li><a >Facebook</a></li> <li><a >Instagram</a></li> <li><a >Twitter</a></li> </ul> </body> </html>
上面這段HTML生日代碼文本是一個簡單的生日網頁,頁面中包含了一張生日蛋糕圖片和三個社交媒體網站的鏈接。該網頁使用HTML代碼編寫,采用了CSS樣式來美化頁面的外觀、字體和顏色等樣式屬性。
上一篇css 分辨率設置