網頁主要由三部分組成:HTML結構(structure) CSS表現(presentation)JavaScript行為(behavior) 互聯網的三大基石:HTML、HTTP協議、URL
HTML指的是超文本標記語言: HyperText Markup Language <!DOCTYPE html>文檔聲明 注釋內容:<!-- 注釋內容 -->
HTML標記標簽通常被稱為標簽 (HTML tag),是由尖括號包圍的關鍵詞,比如 <html>。標簽通常是成對出現的,比如 <b> 和 </b>,標簽對中的第一個標簽是開始標簽,第二個標簽是結束標簽;開始和結束標簽也被稱為開放標簽和閉合標簽。沒有內容的HTML元素被稱為空元素。空元素是在開始標簽中關閉的。如:<br> 就是沒有關閉標簽的空元素(<br> 標簽定義換行)。
基本結構:
<html>
<head>
<title>WebName頁面文檔標題</title>
<base href="//www.runoob.com/images/" target="_blank">定義頁面中所有鏈接默認的鏈接目標地址
<script type="text/javascript" src="js/a.js"></script>引用外部js
<link type="text/css" rel="stylesheet" href="css/a.css" />引用外部樣式 rel:必需。定義當前文檔與被鏈接文檔之間的關系。rel 是 relationship的英文縮寫
<link type="image/x-icon" rel="icon" href="img/icon.jpg" /> 設置網頁圖標
<style type="text/css"> body{font-size:20px;} </style>內部樣式
</head>
<body bgcolor="pink">
主體內容
</body>
標題標簽:<h1~6> 水平線:<hr size="2" width="80%" color="red" /> 段落:<p style="color:red;">段落內容</p> 換行:<br /> 粗體:<b></b> <strong></strong> 斜體:<i></i> <em></em>
小號字:<small></smal> 下標字:<sub></sub> 上標字:<sup></sup> 插入字:<ins></ins> 刪除字:<del></del> 預格式:<pre></pre>
字體標簽:<font size=”1-7” face="verdana" color="green">This is some text!</font>
<abbr> 標簽用來表示一個縮寫詞或者首字母縮略詞:The<abbr title="World Health Organization">WHO</abbr> was founded in 1948.
<address>標簽定義文檔作者/所有者的聯系信息 <cite>標簽定義作品(比如書籍、歌曲、電影、電視節目、繪畫、雕塑等等)的標題
<blockquote cite="http://www.baidu.com">引用內容</blockquote>
鏈接:<a href="/login.jsp" target="_blank / _self"></a> <a href="mailto:abc@sina.com">聯系我們</a>
錨鏈接:<a name="marker">設置錨點位置</a> <a href="#marker">跳轉到錨點位置</a> <a href="a.html#marker">跳轉到指定頁面的位置</a>
圖像標簽:<img src="pics/a.jpg" height=400px width=200px alt="圖像不能正常顯示的替代文字" title="鼠標懸停提示文字" align="top/center/bottom" /> 常見的圖像格式:JPG GIF BMP PNG
圖像映射:<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm">
<area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm">
<area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
</map>
內嵌標簽:<embed src="ee.wmv" autostart="true" loop='true' hidden='false' width="100px" height="100px" />
塊級元素(獨占一行):p div h1 ol ul table form
行內元素:a img span font
特殊實體符:>> << "" ©版權© 單引號:'