1. 程式人生 > >4.27

4.27

htm bottom 表單 學歷 地址 eth pad 什麽 right

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <body>
  <table border="1" cellspacing="0" cellpadding="1" width="50%"  height="618px">
        <tr>
            <td width="50px" align="center">姓名</td>
            <td width="
50px"></td> <td width="50px" align="center">性別</td> <td width="50px"></td> <td width="50px" align="center">出生年月</td> <td width="50px"></td> <td width="50px"rowspan="4"></td> </tr> <tr> <td align="
center">民族</td> <td></td> <td align="center">政治面貌</td> <td></td> <td align="center">身高</td> <td></td> </tr> <tr> <td align="
center">學制</td> <td></td> <td align="center">學歷</td> <td></td> <td align="center">戶籍</td> <td></td> </tr> <tr> <td align="center">專業</td> <td></td> <td colspan="2" align="center">畢業院校</td> <td colspan="2"></td> </tr> <tr> <td colspan="7" align="center"><b>技能、特長或愛好</b></td> </tr> <tr> <td align="center">外語等級</td> <td colspan="2"></td> <td align="center">計算機</td> <td colspan="3"></td> </tr> <tr> <td align="center" colspan="7"><b>個人履歷</b></td> </tr> <tr> <td align="center">時間</td> <td align="center" colspan="2">單位</td> <td align="center" colspan="4">經歷</td> </tr> <tr> <td align="center">2002年4月</td> <td colspan="2"></td> <td colspan="4"></td> </tr> <tr> <td align="center">2003年3月</td> <td colspan="2"></td> <td colspan="4"></td> </tr> <tr> <td align="center">2003年8月</td> <td colspan="2"></td> <td colspan="4"></td> </tr> <tr> <td align="center" colspan="7"><b>聯系方式</b></td> </tr> <tr> <td align="center" >通訊地址</td> <td colspan="3"></td> <td align="center" >聯系方式</td> <td colspan="2"></td> </tr> <tr> <td align="center" >E-mail</td> <td colspan="3"></td> <td align="center" >郵編</td> <td colspan="2"></td> </tr> <tr> <td colspan="7" align="center" height="50"><b>自我評價</b></td> </tr> </table> <form action="http://www.baidu.com" method="get" target="_self"> <!--文本類--> 文本框:<input type="text" name="" id="" value=""/><br /> 密碼框:<input type="password" name="" id="" value="" /><br /> 隱藏框:<input type="hidden" name="" id="" value=""/> <br /> 文本域:<textarea name="" rows="" cols=""></textarea><br /> <!--按鍵類--> <input type="button" name="" id="" value="普通按鈕" /><br /> <input type="reset" name="" id="" value="重置" /><br /> <input type="submit" name="" id="" value="提交" /><br /> <input type="image" src="../0426_1_html.png" name="" id="" value="圖片按鈕" width="100" height="30" /> <!--選擇類--> <!--單選--> <input type="radio" name="1" id="" value="nan" checked="checked" /><input type="radio" name="1" id="" value="nv" /><!--復選--> <input type="checkbox" name="h1" id="" value="" checked="checked"/>山東 <input type="checkbox" name="h2" id="" value=""/>四川 <input type="checkbox" name="h3" id="" value=""/>重慶 <input type="checkbox" name="h4" id="" value=""/>雲南 <!--下啦--><!--默認selected--> <select > <option value="">撩妹</option> <option value="" selected="selected">網戀</option> <option value="">奔現</option> </select> <br /> <input type="file" name="" id="" value=""/> <br /> </body> </html>

一、img標簽
src 引入圖片的路徑
width 圖片的寬度
height 圖片的高度
title 鼠標移上圖片顯示圖片的標題
alt 圖片加載不出來時顯示內容
二、表格標簽
table 表格
border 表格的邊框 1
cellspacing 表格中行列之間的間距 0
cellpadding 內容與邊框之間的間距 0
tr 行
td 列
width 列的寬度
height 列的高度
align 水平對齊 包括 center 中間 right 右 left 左
valign 豎直方向 包括 top 頂部 middle 中間 bottom 底部
bgcolor 背景顏色
rowspan 行合並
colspan 列合並
一、表單
1、<form></form>
2、action(行為):指向跳轉頁面
3、method(方法):以什麽樣的形式進行數據的提交
4、post:隱性提交 get:顯性提交
5、traget:打開方式
6、_blank:新頁面打開 _s

4.27