个人简历HTML版

个人简历HTML版

七月 18, 2019 阅读数(请刷新)

个人简历HTML

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>个人简历</title>
<link rel="stylesheet" href="css/resume.css">
</head>
<body>
<form action="">
<div id="div1">
<div id="left">
<div id="head_img">
<img src="img/head_erhuo.jpg" alt="">
<input type="file" name="head_img" id="file">
</div>
<div id="name">
<input type="text" name="username" placeholder="请输入姓名" autocomplete="off">
</div>
<div id="position">
<h4>/求职意向/</h4>
<input type="text" name="position" placeholder="请输入求职意向">
</div>
<div id="information">
<h4>/个人信息/</h4>
<table id="table1">
<tr>
<td>年龄:</td>
<td><input type="text" name="age" placeholder="请输入您的年龄" autocomplete="off"></td>
</tr>
<tr>
<td>现居住地:</td>
<td><input type="text" name="address" placeholder="请输入您的居住地址" autocomplete="off"></td>
</tr>
<tr>
<td>联系电话:</td>
<td><input type="text" name="tel" placeholder="请输入您的联系电话" autocomplete="off"></td>
</tr>
<tr>
<td>电子邮箱:</td>
<td><input type="email" name="email" placeholder="请输入您的电子邮箱" autocomplete="off"></td>
</tr>
</table>
</div>
<div id="skill">
<h4>/技能证书/</h4>
<div id="skill_lun">
<h4>语言能力:</h4>
<input type="text" name="skill_e" placeholder="英语" autocomplete="off"><br>
<input type="text" name="skill_p" placeholder="普通话" autocomplete="off">
</div>
<div id="skill_cpu">
<h4>计算机能力:</h4>
<input type="text" name="skill_1" placeholder="计算机能力1" autocomplete="off"><br>
<input type="text" name="skill_2" placeholder="计算机能力2" autocomplete="off">
</div>
<div id="skill_other">
<h4>其他能力:</h4>
<input type="text" name="skill_o1" placeholder="其他能力" autocomplete="off">
</div>
</div>
</div>
<div id="right">
<div id="header">
<h3>/教育背景 Education/</h3>
<table id="table2">
<tr>
<td><input type="text" name="school" placeholder="毕业院校" autocomplete="off"></td>
<td><input type="text" name="education" placeholder="学历" autocomplete="off"></td>
</tr>
<tr>
<td colspan="2"><textarea rows="10" cols="50" placeholder="学习经历"></textarea></td>
</tr>
</table>
</div>

<div id="main">
<h3>/实习经历 Internships/</h3>
<table id="table3">
<tr>
<td><input type="text" name="time1" placeholder="工作时间(2019-07-16)"></td>
<td><input type="text" name="work1" placeholder="工作地点" autocomplete="off"></td>
</tr>
<tr>
<td colspan="2"><textarea rows="10" cols="50" placeholder="工作经历"></textarea></td>
</tr>
</table>
<table id="table4">
<tr>
<td><input type="text" name="time2" placeholder="工作时间(2019-07-16)"></td>
<td><input type="text" name="work2" placeholder="工作地点" autocomplete="off"></td>
</tr>
<tr>
<td colspan="2"><textarea rows="10" cols="50" placeholder="工作经历"></textarea></td>
</tr>
</table>
</div>
<div id="footer">
<h3>/自我评价 Evalution/</h3>
<table id="table5">
<tr>
<td colspan="2"><textarea rows="4" cols="50" placeholder="自我评价"></textarea></td>
</tr>
</table>
</div>
</div>
<div id="sub">
<input type="submit" value="提交"><input type="reset"value="重置">

</div>
</div>
</form>
</body>
</html>

个人简历CSS

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
body{
padding: 0;
margin: 0;
background-color: darkgray;
}
input{
border: none;
background-color: darkturquoise;
color: white;
text-align: center;
}
#div1{
width: 840px;
height: 1100px;
background-color: white;
position: absolute;
left: 20%;
top: 5%;
}
#left{
width: 340px;
height: 1100px;
background-color: darkturquoise;
float: left;
}
#head_img{
width: 340px;
height: 220px;
}
#head_img>img{
width: 130px;
height: 125px;
position: absolute;
left: 100px;
top: 50px;
}
#head_img>#file{
position: absolute;
left: 100px;
top: 180px;
width: 168px;
}
#name{
height: 50px;
width: 340px;

}
#name>input{
height: 40px;
width: 152px;
position: absolute;
left: 88px;
font-size: 30px;
}
#position{
width: 340px;
height: 100px;
color: white;
}
#position>h4{
position: relative;
left:40% ;

}
#position>input{
height: 20px;
width: 152px;
position: absolute;
left: 96px;
font-size: 15px;

}
#information{
width: 340px;
height: 220px;
color: white;
}
#information>h4{
position: relative;
left:40% ;

}
#table1>tbody>tr>td>input{
width: 150px;
height: 20px;
font-size: 15px;
}
#table1>tbody>tr>td{
padding-top: 5px;
padding-bottom: 5px;
border-bottom: 1px dotted white;

}
#table1{
padding-left: 50px;
}
#skill{
width: 340px;
height: 350px;
color: white;
}
#skill>h4:nth-child(1){
position: relative;
left:40% ;

}
#skill_lun>h4:nth-child(1){
position: relative;
left:20% ;
margin-bottom: 10px;
}
#skill_lun>input{

position: relative;
left:20% ;
width: 150px;
height: 20px;
font-size: 15px;
margin-bottom: 10px;
border-bottom: 1px dotted white;
}
#skill_cpu>h4:nth-child(1){
position: relative;
left:20% ;
margin-bottom: 10px;
}
#skill_cpu>input{

position: relative;
left:20% ;
width: 150px;
height: 20px;
font-size: 15px;
margin-bottom: 10px;
border-bottom: 1px dotted white;
}
#skill_other>h4:nth-child(1){
position: relative;
left:20% ;
margin-bottom: 10px;
}
#skill_other>input{

position: relative;
left:20% ;
width: 150px;
height: 20px;
font-size: 15px;
margin-bottom: 10px;
border-bottom: 1px dotted white;
}
#right{
float: right;
width: 455px;
height: 1100px;
}
#header{
width: 386px;
height: 290px;
position: relative;
top: 5%;
left: 5%;
border-bottom: 2px dotted darkturquoise;
}
#header>h3{
color: darkturquoise;

}
#table2>tbody>tr>td>input{
width: 150px;
height: 20px;
font-size: 15px;
background-color: white;
color: darkturquoise;
}
textarea{

border: none;
font-size: 15px;
color: darkturquoise;
margin-bottom: 10px;

}
#main{
width: 386px;
height: 510px;
position: relative;
top: 5%;
left: 5%;
border-bottom: 2px dotted darkturquoise;
}
#main>h3{
color: darkturquoise;

}
#table3>tbody>tr>td>input{
width: 150px;
height: 20px;
font-size: 15px;
background-color: white;
color: darkturquoise;
}
#table4>tbody>tr>td>input{
width: 150px;
height: 20px;
font-size: 15px;
background-color: white;
color: darkturquoise;
}
#footer{
width: 386px;
height: 150px;
position: relative;
top: 5%;
left: 5%;
border-bottom: 2px dotted darkturquoise;
}
#footer>h3{
color: darkturquoise;

}
#sub{
position: absolute;
left: 90%;
top:100%;
}