-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (92 loc) · 5.23 KB
/
Copy pathindex.html
File metadata and controls
99 lines (92 loc) · 5.23 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liu Haoyu - Resume</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background: #f5f5f5; }
.container { max-width: 800px; margin: 40px auto; background: white; box-shadow: 0 0 20px rgba(0,0,0,0.1); }
.header { background: linear-gradient(135deg, #2c3e50, #3498db); color: white; padding: 40px; text-align: center; }
.header h1 { font-size: 2.5em; margin-bottom: 10px; }
.header .subtitle { font-size: 1.1em; opacity: 0.9; }
.header .location { margin-top: 10px; font-size: 0.95em; opacity: 0.8; }
.content { padding: 40px; }
.section { margin-bottom: 30px; }
.section-title { font-size: 1.3em; color: #2c3e50; border-bottom: 3px solid #3498db; padding-bottom: 8px; margin-bottom: 15px; }
.summary { color: #555; font-size: 1em; line-height: 1.8; }
.item { margin-bottom: 15px; }
.item-title { font-weight: 600; color: #2c3e50; }
.item-desc { color: #666; font-size: 0.95em; margin-top: 5px; }
.skills-list { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-tag { background: #ecf0f1; padding: 8px 15px; border-radius: 20px; font-size: 0.9em; color: #2c3e50; border: 1px solid #bdc3c7; }
.language-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; }
.language-name { font-weight: 500; }
.language-level { color: #3498db; }
.footer { text-align: center; padding: 20px; background: #f8f9fa; color: #666; font-size: 0.9em; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Liu Haoyu</h1>
<div class="subtitle">Data Annotation Specialist</div>
<div class="location">Xiangtan, Hunan, China</div>
</div>
<div class="content">
<div class="section">
<h2 class="section-title">Professional Summary</h2>
<p class="summary">Experienced data annotation specialist with strong background in content evaluation, quality assurance, and AI training data preparation. Skilled in search relevance assessment, image classification, and text quality review. Detail-oriented and committed to delivering accurate work efficiently.</p>
</div>
<div class="section">
<h2 class="section-title">Education</h2>
<div class="item">
<div class="item-title">Bachelor's Degree in Computer Science</div>
<div class="item-desc">Strong foundation in data analysis, programming, and quality assurance methodologies.</div>
</div>
</div>
<div class="section">
<h2 class="section-title">Work Experience</h2>
<div class="item">
<div class="item-desc">• 3+ years of experience in data annotation and content moderation</div>
<div class="item-desc">• Worked on search relevance evaluation, image classification, and text quality assessment</div>
<div class="item-desc">• Familiar with various crowdsourcing platforms and quality guidelines</div>
<div class="item-desc">• Experience with AI/ML training data preparation and validation</div>
<div class="item-desc">• Consistently maintained high accuracy rates across diverse task types</div>
</div>
</div>
<div class="section">
<h2 class="section-title">Skills</h2>
<div class="skills-list">
<span class="skill-tag">Data Annotation</span>
<span class="skill-tag">Content Moderation</span>
<span class="skill-tag">Search Relevance</span>
<span class="skill-tag">Image Classification</span>
<span class="skill-tag">Text Quality Review</span>
<span class="skill-tag">Quality Assurance</span>
<span class="skill-tag">AI Training Data</span>
</div>
</div>
<div class="section">
<h2 class="section-title">Languages</h2>
<div class="language-item">
<span class="language-name">Chinese</span>
<span class="language-level">Native</span>
</div>
<div class="language-item">
<span class="language-name">English</span>
<span class="language-level">Fluent</span>
</div>
</div>
<div class="section">
<h2 class="section-title">Availability</h2>
<p class="summary">Available for full-time work. Flexible schedule. Reliable internet connection and dedicated workspace.</p>
</div>
</div>
<div class="footer">
Last updated: March 2026
</div>
</div>
</body>
</html>