-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmock.html
More file actions
112 lines (97 loc) · 2.91 KB
/
mock.html
File metadata and controls
112 lines (97 loc) · 2.91 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
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mock Resume</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f4f4f4;
}
.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: blue;
margin-bottom: 5px;
}
h2 {
color: #34495e;
border-bottom: 2px solid #3498db;
padding-bottom: 5px;
margin-top: 20px;
}
p,
li {
line-height: 1.6;
color: #555;
}
ul {
margin: 0;
padding-left: 20px;
}
.skills span {
display: inline-block;
background: #3498db;
color: white;
padding: 5px 10px;
margin: 5px 5px 0 0;
border-radius: 3px;
font-size: 0.9em;
}
.dangerous {
color: red;
}
</style>
</head>
<body>
<div class="container">
<!-- Name Section -->
<h1>Jane Doe</h1>
<p>Email: jane.doe@example.com | Phone: (555) 555-5555</p>
<!-- Profile -->
<h2>Profile</h2>
<p>Full-stack developer with 5 years of experience building scalable web applications.</p>
<!-- Experience -->
<h2>Experience</h2>
<ul>
<li>
<strong>Frontend Developer at TechCorp</strong> (2019 - Present)
<p>Worked on developing responsive user interfaces using React and TypeScript.</p>
</li>
<li>
<strong>Junior Developer at WebSolutions</strong> (2017 - 2019)
<p>Maintained legacy code and assisted in building new features using JavaScript and Node.js.</p>
</li>
</ul>
<!-- Education -->
<h2>Education</h2>
<ul>
<li>
<strong>B.Sc. in Computer Science</strong>, University of Somewhere (2013 - 2017)
</li>
</ul>
<!-- Skills -->
<h2>Skills</h2>
<div class="skills">
<span>JavaScript</span>
<span>TypeScript</span>
<span>React</span>
<span>Node.js</span>
<span>CSS</span>
</div>
<!-- Dangerous content for testing sanitizer -->
<script>alert("XSS Attack!");</script>
<p onclick="alert('Click!')">Click me!</p>
<!-- This is a comment that should be removed -->
<iframe src="https://example.com"></iframe>
<p class="dangerous" style="background-image: url(javascript:alert('XSS'));">Malicious inline style</p>
</div>
</body>
</html>