-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexperience.html
76 lines (72 loc) · 2.83 KB
/
experience.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Experience | Kristy Burge</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">Kristy Burge</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
</ul>
</div>
<header>
<img src="images/kristyburge.jpg" alt="Kristy Burge" class="profile-image">
<h1 class="tag name">Experience</h1>
<p class="tag location">Professional qualifications</p>
</header>
<main class="experience">
<h2>Kristy Burge, Web Developer</h2>
<h3 class="section-title">Summary of Qualifications</h3>
<ul class="skills">
<li>Experience as a freelance WordPress designer/developer</li>
<li>Experience with HTML, CSS, and JavaScript</li>
<li>Bachelor of Science, Administrative Management</li>
<li>Master of Business Administration (MBA)</li>
</ul>
<h3 class="section-title">Education</h3>
<ul class="education">
<li class="current"><span>Front End Techdegree,</span> Treehouse</li>
<li class="completed"><span>Master of Business Administration,</span> Missouri State University</li>
<li class="completed"><span>Bachelor of Science,</span> Missouri State University</li>
</ul>
<h3 class="section-title">Employment</h3>
<ul class="employment">
<li><span>Freelance Web Developer</span>
<ul>
<li>Accomplishment #1</li>
<li>Accomplishment #2</li>
<li>Accomplishment #3</li>
</ul>
</li>
<li><span>Revenue Accounting Analyst,</span> Chesapeake Energy
<ul>
<li>Accomplishment #1</li>
<li>Accomplishment #2</li>
<li>Accomplishment #3</li>
</ul>
</li>
<li><span>Payroll Administrator,</span> U.S. Chamber of Commerce
<ul>
<li>Accomplishment #1</li>
<li>Accomplishment #2</li>
<li>Accomplishment #3</li>
</ul>
</li>
</ul>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/kristyburge" class="social twitter" target="_blank">Twitter</a></li>
<li><a href="https://linkedin.com/in/kristyburge" class="social linkedin" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/kristyburge" class="social github" target="_blank">GitHub</a></li>
</ul>
<p class="copyright">Copyright 2018, Kristy Burge</p>
</footer>
</body>
</html>