-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
179 lines (163 loc) · 2.38 KB
/
resume.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style_4.css">
<meta charset="UTF-8">
<title>resume</title>
</head>
<body>
<div class="card">
<div class="header" >
<h1>
简历
</h1>
</div>
<div class="textleft">
<h2 >
基本信息
</h2>
</div>
<div class="textright">
<table >
<tr><b>
姓名</b>
</tr>
<tr>
<td>张三</td>
</tr>
<tr>
<td><b>性别</b><td>
</tr>
<tr>
<td>男</td>
</tr>
<tr>
<td><b>应聘职位</b></td>
</tr>
<tr>
<td>Web前端工程师</td>
</tr>
</table>
<input type="button" name="more" value="GetMore" id="button1" onclick="document.getElementById('hidden').style.display='block'">
<p id="hidden">
喜欢写字画画
</p>
</div>
<div class="textleft">
<h2 >
联系方式
</h2>
</div>
<div class="textright">
<table >
<tr>
<td><b>手机</b></td>
</tr>
<tr>
<td>12312341234</td>
</tr>
<td><b>Email</b></td>
<tr>
<td><a href="https://www.baidu.com/">jionefe@baidu.com</a></td>
</tr>
<tr>
<td><b>个人主页</b></td>
</tr>
<tr>
<td><a href="https://github.com/">Github</a></td>
</tr>
</table>
</div>
<div class="textleft">
<h2>
能力描述
</h2>
</div>
<div class="textright">
<table>
<tr><td>
技术能力
</td>
</tr>
<tr>
<td>
熟练掌握HTML,CSS,JavaScript
</td>
</tr>
<tr>
<td>
综合能力
</td>
</tr>
<tr>
<td>
良好的沟通,主动积极,努力勤奋
</td>
</tr>
</table>
</div>
<div class="textleft">
<h2 >
教育经历
</h2>
</div>
<div class="textright">
<table>
<tr>
<td>
<b>本科</b>
</td>
</tr>
<tr>
<td>
百度前端技术学院小薇学院
</td>
</tr>
<tr>
<td>
<b>研究生</b>
</td>
</tr>
<tr>
<td>
百度前端技术学院大斌学院
</td>
</tr>
</table>
</div>
<div class="textleft">
<h2 >
项目经历
</h2>
</div>
<div class="textright">
<table>
<tr>
<td>
<b>小度小度</b>
</td>
</tr>
<tr>
<td>
作为前端工程师抉择参与了ABC组件的开发
</td>
</tr>
<tr>
<td>
<b>SAN Doc</b>
</td>
</tr>
<tr>
<td>
作为文档工程师参与了SAN Doc编写
</td>
</tr>
</table>
</div>
</div>
</div>
<script type="text/javascript">
alert("大噶好")
</script>
</body>
</html>