1. 程式人生 > >html基礎回顧

html基礎回顧

idt 新窗口 顯示 itl round name strong 打開 下載

一 Html

<head>標簽:

1 <head>
2     <title>網頁標題</title>
3     <meta>
4     <link>
5     <style>...</style>
6     <script>...</script>
7 </head>

<body>標簽:

 1 <p>段落</p>
 2 <h1>標題</h1>
 3 
 4 //需要強調的文本
 5 <em>需要強調的文本</
em> 6 <strong>需要強調的文本</strong> 7 8 //設置單獨樣式 具體在頭文件中<style>設具體樣式 9 <span>文本</span> 10 11 <q>引用文本</q> 12 <blockquote>引用文本</blockquote> 13 <br /> //空標簽 作用同回車 14 <hr /> //添加水平橫線 15 &nbsp; //作用同空格 16 <address>聯系地址信息</address>
17 <code>var i=i+300;</code> 18 <pre>語言代碼段</pre>

<body>標簽2:

//添加無順序信息列表
<ul>
  <li>信息</li>
  <li>信息</li>
   ......
</ul>

//添加有順序信息列表
<ol>
   <li>信息</li>
   <li>信息</li>
   ......
</ol>

//封裝盒子
<div  id="版塊名稱">
</div> //插入表格 <table summary="表格簡介文本"> <caption>標題文本</caption> <tbody> <tr> //表格的一行 <th>班級</th> //表格的一個單元格 <th>學生數</th> <th>平均成績</th> </tr> <tr> <td>一班</td> <td>30</td> <td>89</td> </tr> </tbody> </table>

<body>標簽3:

//使用<a>標簽,鏈接到另一個頁面 其中target="_blank"作用是在新窗口打開
<a  href="目標網址"  title="鼠標滑過顯示的文本" target="_blank">鏈接顯示的文本</a>

//插入圖片
<img src="圖片地址" alt="下載失敗時的替換文本" title = "提示文本">

技術分享圖片

<body>標簽4:

表單是可以把瀏覽者輸入的數據傳送到服務器端,這樣服務器端程序就可以處理表單傳過來的數據。

 1 /*
 2 <form   method="傳送方式"   action="服務器文件">
 3 
 4 1.<form> :<form>標簽是成對出現的,以<form>開始,以</form>結束。
 5 
 6 2.action :瀏覽者輸入的數據被傳送到的地方,比如一個PHP頁面(save.php)。
 7 
 8 3.method : 數據傳送的方式(get/post)。
 9 */
10 
11 <form    method="post"   action="save.php">
12         <label for="username">用戶名:</label>
13         <input type="text" name="username" />
14         <label for="pass">密碼:</label>
15         <input type="password" name="pass" />
16 </form>
 1 //多行輸入時標簽為textare
 2 
 3 <textarea  rows="行數" cols="列數">
 4         默認文本
 5 </textarea>   
 6 
 7 /*
 8 單選框 復選框
 9 1、type:
10    當 type="radio" 時,控件為單選框
11    當 type="checkbox" 時,控件為復選框
12 2、value:提交數據到服務器的值(後臺程序PHP使用)
13 3、name:為控件命名,以備後臺程序 ASP、PHP 使用
14 4、checked:當設置 checked="checked" 時,該選項被默認選中
15 */
16 
17 <input   type="radio/checkbox"   value=""    name="名稱"   checked="checked"/>     
18 
19 //下拉框選擇 在select在後加屬性 multiple="multiple" 可以實現復選
20 
21 <form action="save.php" method="post" >
22     <label>愛好:</label>
23     <select>
24       <option value="看書">看書</option>
25       <option value="旅遊">旅遊</option>
26       <option value="運動">運動</option>
27       <option value="購物">購物</option>
28     </select> 
29 </form>
30 
31 //提交按鈕 重置按鈕
32 <form  method="post" action="save.php">
33     <label for="myName">姓名:</label>
34     <input type="text" value=" " name="myName " />
35     <input type="submit" value="提交" name="submitBtn" />
36     <input type="reset" value="重置"  />
37 </form>

<label>標簽:

label標簽不會向用戶呈現任何特殊效果,它的作用是為鼠標用戶改進了可用性。如果你在 label 標簽內點擊文本,就會觸發此控件。就是說,當用戶單擊選中該label標簽時,瀏覽器就會自動將焦點轉到和標簽相關的表單控件上(就自動選中和該label標簽相關連的表單控件上)。

註意:標簽的 for 屬性中的值應當與相關控件的 id 屬性值一定要相同。

1 <form>
2   <label for="male">男</label>
3   <input type="radio" name="gender" id="male" />
4   <br />
5   <label for="female">女</label>
6   <input type="radio" name="gender" id="female" />
7   <label for="email">輸入你的郵箱地址</label>
8   <input type="email" id="email" placeholder="Enter email">
9 </form>

html基礎回顧