forked from hzuapps/html5-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>实验2</title> | ||
<style type="text/css"> | ||
*{margin:0px;} | ||
#a{width:400px; | ||
height:600px;} | ||
#all{margin:20px;} | ||
#b1,#b2,#b3{width:360px; | ||
height:130px; | ||
margin-top:20px; | ||
margin-bottom:20px;} | ||
#b1 #b11{width:260px; | ||
height:130px; | ||
float:left;} | ||
#b1 #b12{width:100px; | ||
height:130px; | ||
float:right;} | ||
input{border:none;outline:medium;} | ||
textarea{border:none; | ||
outline:medium; | ||
overflow:hidden; | ||
width:360px; | ||
height:130px; | ||
} | ||
</style> | ||
</head> | ||
<body id="a"> | ||
<div id="all"> | ||
<p align="center">个人简历</p> | ||
<hr> | ||
<div id="b1"> | ||
<div id="b11"> | ||
<p>姓 名:<input name="name" type="text" maxlength="4"></p> | ||
<p>性 别:<input name="sex" type="text" maxlength="1"></p> | ||
<p>专 业:<input name="pro" type="text" maxlength="8"></p> | ||
<p>联系电话:<input name="phone" type="text" maxlength="11"></p> | ||
<p>毕业学校:<input name="school" type="text" maxlength="8"></p> | ||
</div> | ||
<div id="b12"> | ||
<img src="https://img04.sogoucdn.com/app/a/100520093/a619da016897973b-f6b6fd11a6007fca-41e29f6f4dc2baa8110700ac0dee4946.jpg" width="100" height="130"> | ||
</div> | ||
</div> | ||
<p>求职意向:</p> | ||
<hr> | ||
<div id="b2"> | ||
<p>目标单位:<input name="unit" type="text" maxlength="8"></p> | ||
<p>目标行业:<input name="line" type="text" maxlength="8"></p> | ||
<p>期望薪资:<input name="pay" type="text" maxlength="8"></p> | ||
<p>期望地区:<input name="area" type="text" maxlength="8"></p> | ||
<p>到岗时间:<input name="time" type="text" maxlength="8"></p> | ||
</div> | ||
<p>自我评价:</p> | ||
<hr> | ||
<div id="b3"> | ||
<textarea name="textarea" wrap="physical"> | ||
</textarea> | ||
</div> | ||
<hr> | ||
<form name="form1" method="post" action="program.asp">留言:<input type="text" name="call"> | ||
<input type="submit" name="Submit" value="提交"> | ||
<br> | ||
<a href="https://github.com/gaorunua">我的github</a> | ||
</div> | ||
</body> | ||
</html> |