html
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
<!DOCTYPE html>
<html>
<body>
<header>
<h1>fack resume</h1>
<p id="position">Software Engineer</p>
</header>
<section>
<h2>Summary</h2>
<p class="summary"><img src="https://cdn2.iconfinder.com/data/icons/avatars-99/62/avatar-370-456322-512.png" width="80px" alt="">
Deadline-oriented software engineer with lots of experience. Solid track record of architecting solutions that exceed client expectations.</p>
</section>
<section>
<h2>Experience</h2>
<ul id="experience">
<li>
<b>Senior Software Engineer - Google</b> | 2018 - Present
</li>
<li>
<b> Software Engineer - Facebook</b> | 2016 - 2018
</li>
</ul>
</section>
<section>
<h2>Skills</h2>
<table id="skills">
<tr><th>Skill</th><th>Level</th></tr>
<tr><td>HTML</td><td>Expert</td></tr>
Enter to Rename, Shift+Enter to Preview
css
css
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
h1 {
font-size: 28px;
}
#position {
font-size: 18px;
}
.summary {
font-size: 16px;
}
h2 {
color: #2F5A78;
font-size: 20px;
}
body {
font-family: Arial;
}
#position {
font-size: 18px;
font-weight: bold;
}
h1 {
font-size: 28px;
text-transform: uppercase;
}
.summary {
font-size: 16px;
line-height: 20px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run