幾個自學HTML的例子,僅供娛樂,並沒有其它什麼用
此處不贅述HTML中不同標簽的用法僅僅給出自己學習時寫的一些自娛自樂的例子,具體標簽用法請參考W3C(http://www.w3school.com.cn/),畢竟這個才是最靠譜的,請不要相信任何二道販子。
例子1:實現了一個簡單的動漫人物圖像顯示及介紹的頁面
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head> <title>html basis-3</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="author" content="Wayne Ng" /> <meta name="description" content="basis-3" /> <meta name="revised" content="Wayne Ng,2016/1/12" /> <style type="text/css"> h3{color: Red} div#part1{background-color: LightBlue} </style> </head> <body> <div id="part1"> <h3>插入音樂播放器播放MP3</h3> <iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86 src="http://music.163.com/outchain/player?type=2&id=29719175&auto=0&height=66"></iframe> </div> </body> </html>
顯示效果如下: