Linux下檔案操作API
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>個人簡歷</title>
<!-- CSS -->
<style type="text/css">
input{
border: 0px;
outline: none;
}
table{
font-size:16px;
text-align: center;
}
td{
width: 90px;
height: 30px;
}
a{
color: black;
text-align: center;
font-size: 16px;
display: block;
text-decoration: none;
/* width: 90px;
height: 30px; */
}
a:hover{
color: red;
}
a:active{
color: yellow;
}
#c_1{
background-color: aqua;
}
#c_2{
background-color: aquamarine;
}
#c_3{
background-color: aqua;
}
#c_4{
background-color: aquamarine;
}
#c_5{
background-color: aqua;
}
#c_6{
background-color: aquamarine;
}
.c{
width: 90px;
height: 30px;
}
</style>
</head>
<body>
<form method="post" action="#">
<table border="1" cellspacing="" cellpadding="" align="center">
<tr>
<td colspan="5" bgcolor="#0000FF"><h1 align="center">個人簡歷</h1></td>
</tr>
<tr>
<td><a href="#">姓名</a></td>
<td> <input type="text" name="name" value=""/ ></td>
<td><a href="#">年齡</a></td>
<td> <input type="number" name="number" value="" /></td>
<td rowspan="4">
照片
</td>
</tr>
<tr>
<td><a href="#">民族</a></td>
<td> <input type="text" name="mz" value="" /></td>
<td><a href="#">性別</a></td>
<td> <input type="radio" name="gen" value="" checked="checked"/>男
<input type="radio" name="gen" />女
</td>
</tr>
<tr>
<td><a href="#">家庭住址</a></td>
<td>
<select name="zz" size="1">
<option value="" selected="selected">河南</option>
<option value="" >江蘇</option>
</select>
省</td>
<td>
<select name="zz" size="1">
<option value="" selected="selected">鄭州</option>
<option value="" >駐馬店</option>
</select>
市</td>
<td>
<select name="zz" size="1">
<option value="" selected="selected">二七</option>
<option value="" >二七</option>
</select>
區</td>
</tr>
<tr>
<td><a href="#">詳細地址</a></td>
<td colspan="3">
<input type="text" value=""/>
</td>
</tr>
<!-- 教育經歷 -->
<tr>
<td id="c_1" colspan="5"><a href="#">教育經歷</a></td>
</tr>
<tr id="c_2">
<td><a href="#">學校</a></td>
<td><a href="#">時間</a></td>
<td colspan="3"><a href="#">學習內容</a></td>
</tr>
<tr>
<td>#</td>
<td>#</td>
<td colspan="3">#</td>
</tr>
<tr>
<td>#</td>
<td>#</td>
<td colspan="3" class="789">#</td>
</tr>
<tr>
<td>#</td>
<td>#</td>
<td colspan="3">#</td>
</tr>
<!-- 工作經歷 -->
<br />
<tr id="c_3">
<td colspan="5"><a href="#">工作經驗</a></td>
</tr>
<tr id="c_4">
<td><a href="#">公司</a></td>
<td><a href="#">時間</a></td>
<td colspan="3"><a href="#">工作內容</a></td>
</tr>
<tr>
<td></td>
<td></td>
<td colspan="3"></td>
</tr>
<tr>
<td></td>
<td></td>
<td colspan="3"></td>
</tr>
<tr>
<td></td>
<td></td>
<td colspan="3"></td>
</tr>
<tr>
<td colspan="5"><a href="#">興趣愛好</a></td>
</tr>
<tr>
<td colspan="5" align="center">
<input type="checkbox" name="interest" value="sports"/>運動
<input type="checkbox" name="interest" value="talk" checked />聊天
<input type="checkbox" name="interest" value="play"/>玩遊戲
</td>
</tr>
<!-- 家庭成員 -->
<tr id="c_5">
<td colspan="5"><a href="#">家庭成員</a></td>
</tr>
<tr id="c_6">
<td class="c"><a href="#">姓名</a></td>
<td class="c"><a href="#">關係</a></td>
<td class="c"><a href="#">電話</a></td>
<td colspan="2"><a href="#">住址</a></td>
</tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</form>
</body>
</html>