<!DOCTYPE html> <html> <head> <title>Hello HTML</title> </head> <body> <p>Hello World!!</p> <input type="submit" name="submit" value="提交">提交表单</input> </body> </html>
<select id="selectSample"> <option value = "100"> right</option> <option value = 100> wrong</option> </select>
• <element-name attribute = ”value”>content</element-name>
四 文档流布局
Block ——垂直布局 ——div,P,table
InLine——水平布局——Span(之前 我一直以为这货是Block的),strong,em,img,a,input ,select
Block cannot be inside inline
五 语义化标签
1 列表元素
dl>dt,dd;ul,ol>li
以上元素区别
❀ ol :❀ dl 内容块
dt 内容块的标题
dd 内容
例子:
<dl>
<dt>标题</dt>
<dd>内容1</dd>
<dd>内容2</dd>
</dl>
2 表格
table > thead,tfoot ,tbody >tr >th,td
eg:
<table border="1px;" summary="1年1班名單"> <caption>1年1班名單</caption> <thead><tr><th>姓名</th><th>出生年月日</th><th>出生地</th></tr></thead> <tbody> <tr><td>王小明</td><td>1990.10.10</td><td>台北</td></tr> <tr><td>張小明</td><td>1990.1.1</td><td>台北</td></tr> <tr><td>陳小明</td><td>1990.12.20</td><td>新竹</td></tr> </tbody> <tfoot><tr><th>姓名</th><th>出生年月日</th><th>出生地</th></tr></tfoot> </table>3 标题 段落
h1,h2,h3,h4,h5,h6,p
五 标签的使用 ——例子
用到标签 table,thead,tr,,fieldset,legend,select 等常用标签
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="utf-8"/> <title>XHTML-02</title> </head> <body> <table border="1"> <caption>表格的标题</caption> <thead> <tr> <th>时间</th> <th>事件</th> <th>人物</th> <th>花费</th> </tr> </thead> <tbody> <tr> <td>1</td> <td><ins>小猫吃鱼</ins></td> <td><em>花花</em></td> <td>10</td> </tr> <tr> <td>2</td> <td><ins>动物园</ins></td> <td><em>老虎</em></td> <td>3000</td> </tr> <tr> <td colspan="4">欲购买商品信息 <fieldset> <legend>商品信息</legend> <table> <tr> <td>产品型号:</td> <td>G832</td> </tr> <tr> <td>库存情况:</td> <td> <select> <option>上海仓有货</option> <option>北京仓有货</option> </select> </td> </tr> <tr> <td>市场价:</td> <td><del>¥99.00</del></td> </tr> <tr> <td>抢购价:</td> <td> <ul> <li> <div>通过此方程式计算你买到的价格:</div> <div>X<sub>2</sub>*Y<sub>1</sub>=10</div> <div>2Y<sub>1</sub>+X<sub>2</sub>=8</div> </li> </ul> <div> </div> </td> </tr> <tr><td>购买组合类型:</td><td><input type="checkbox"/>单买货物 <input type="checkbox"/>单货+物品一 <input type="checkbox"/>单货+物品二<input type="checkbox"/>单货+物品三 </td> </tr> <tr> <td><input type="image" src="" alt="Submit"/> <input type="button" value="取消"/></td> </tr> </table> </fieldset> </td> </tr> </tbody> </table> </body> </html>