-
Notifications
You must be signed in to change notification settings - Fork 0
/
Resume-style3-html
82 lines (72 loc) · 1.33 KB
/
Resume-style3-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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style_3.css">
<meta charset="UTF-8">
<title>resume</title>
</head>
<body>
<div class="header">
<h1>
简历
</h1>
</div>
<div class="left">
<h2 class="th">
基本信息
</h2>
<h2 class="th">
联系方式
</h2>
<h2 class="th">
能力描述
</h2>
<h2 class="th">
教育经历
</h2>
<h2 class="th">
项目经历
</h2>
</div>
<div class="right">
<table class="td1">
<tr>
<th>姓名</th>
<td>张三</td>
<th>性别</th>
<td>男</td>
<th>应聘职位</th>
<td>Web前端工程师</td>
</tr>
</table>
<table class="td2">
<tr>
<th>手机</th>
<td>12312341234</td>
<th>Email</th>
<td><a href="https://www.baidu.com/">[email protected]</a></td>
<th>个人主页</th>
<td><a href="https://github.com/">Github</a></td>
</tr>
</table>
<pre class="td3" >
技术能力
熟练掌握HTML,CSS,JavaScript
综合能力
良好的沟通,主动积极,努力勤奋
</pre >
<pre class="td4">
<b>本科</b>
百度前端技术学院小薇学院
<b>研究生</b>
百度前端技术学院大斌学院
</pre >
<pre class="td4">
<b>小度小度</b>
作为前端工程师抉择参与了ABC组件的开发
<b>SAN Doc</b>
作为文档工程师参与了SAN Doc编写
</pre >
</div>
</body>
</html>