-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (109 loc) · 4.98 KB
/
index.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
<!DOCTYPE html><html lang="zh"><head><meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: https://cdnjs.cloudflare.com https://cdn.jsdelivr.net https://code.jquery.com https://unpkg.com https://d3js.org https://threejs.org https://cdn.plot.ly https://stackpath.bootstrapcdn.com https://maps.googleapis.com https://cdn.tailwindcss.com https://ajax.googleapis.com https://kit.fontawesome.com https://cdn.datatables.net https://maxcdn.bootstrapcdn.com https://code.highcharts.com https://tako-static-assets-production.s3.amazonaws.com https://www.youtube.com https://fonts.googleapis.com https://fonts.gstatic.com https://pfst.cf2.poecdn.net https://puc.poecdn.net https://i.imgur.com https://wikimedia.org https://*.icons8.com https://*.giphy.com https://picsum.photos https://images.unsplash.com; frame-src 'self' https://www.youtube.com https://trytako.com; child-src 'self'; manifest-src 'self'; worker-src 'self'; upgrade-insecure-requests; block-all-mixed-content;">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XXX的简历</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
font-family: "Times New Roman", Times, serif; /* 设置英文字体为 Times New Roman */
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
h1, h2, h3 {
color: #333;
}
.contact-info {
font-size: 18px;
margin-bottom: 20px;
}
.section {
margin: 20px 0;
padding: 15px;
background: white;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.item {
margin: 5px 0;
}
.date {
float: right;
color: #777;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
.photo {
height: 4cm;
width: auto;
float: right;
margin-left: 20px;
}
</style>
</head>
<body>
<h1>XXX</h1>
<div class="contact-info">
<span><i class="fa fa-phone"></i> 1000000000</span><br>
<span><i class="fa fa-envelope"></i> <a href="mailto:[email protected]">[email protected]</a></span>
</div>
<img src="xxxxxxxxxxxxx.jpg" alt="XXX的照片" class="photo">
<div class="section">
<h2><i class="fa fa-graduation-cap"></i> 教育背景</h2>
<div class="item clearfix">
<strong>XXXXXX大学</strong>
<span class="date">XXXX级XX在读</span>
<div>专业:XXXXXXXX | 专业排名: X/XX</div>
</div>
</div>
<div class="section">
<h2><i class="fa fa-users"></i> 项目经历</h2>
<div class="item clearfix">
<strong>基于XXXXXXXX的XXXXXXXX系统 (项目负责人)</strong>
<span class="date">XXXX.XX -- XXXX.XX</span>
<p>该项目通过XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX。</p>
<ul>
<li>基于XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX。</li>
<li>实现了XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX。</li>
<li>设计了XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX。</li>
<li>带领团队参加XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX。</li>
</ul>
</div>
<div class="item clearfix">
<strong>一种XXXXXXXXXXXXXXXXXXXXX系统</strong>
<span class="date">XXXX.XX -- 至今</span>
<p>该系统基于XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX。</p>
<ul>
<li>使用XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX。</li>
<li>参与XXXXXXXXXXXXXXXXXXXX。</li>
<li>已提交XXXXXXXXXXXXXXXXXXXXX。</li>
</ul>
</div>
</div>
<div class="section">
<h2><i class="fa fa-trophy"></i> 获奖经历</h2>
<div class="item clearfix">
<strong>XXXXXXXXXXXXXXXXXXX</strong> <span class="date">XXXX</span>
<div>XXXXXXXXXXXXXXXXXXX</div>
</div>
<div class="item clearfix">
<strong>XXXXXXXXXXXXXXXXX</strong> <span class="date">XXXX</span>
<div>XXXXXXXXXXXXXXX赛</div>
</div>
<div class="item clearfix">
<strong>XXXXXXXXXXX等奖</strong> <span class="date">XXXX</span>
<div>全国XXXXXXXXXXXXXXXXXXXX</div>
</div>
</div>
<div class="section">
<h2><i class="fa fa-cogs"></i> 个人能力</h2>
<ul>
<li>熟悉XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX。</li>
<li>熟悉XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX。</li>
<li>熟悉XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX。</li>
</ul>
</div>
</body></html>