-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (80 loc) · 3.14 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
<!DOCTYPE html>
<html>
<head>
<title>About Me - CThomas</title>
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<header class="container">
<section>
<h1>Candice Thomas</h1>
<h2>A few facts and fun!</h2>
</section>
<section>
<nav>
<ul>
<li>Home</li>
<li>About Me</li>
<li>Portfolio</li>
<li>Resume</li>
<li>Contact Me</li>
</ul>
</nav>
</section>
</header>
<main class="container">
<section id="aboutMe">
<h3>About Me</h3>
<div id="quiz">
<h4>Quiz</h4>
<p>Do I have any pets?</p>
<p>Is my favorite color purple?</p>
<p>Am I an Android phone user?</p>
<p>Are battle royale games my favorite type to play?</p>
<p>Am I a general Mac user?</p>
<p>What's the answer to life, the universe, and everything?</p>
<p>Which US states have I visited?</p>
</div>
<div id="videoGameList">
<h4>Top 10 Video Games</h4>
<ol>
<li>Fallout: New Vegas</li>
<li>Bioshock</li>
<li>Rise of the Tomb Raider</li>
<li>Warcraft 3</li>
<li>Dragon Age</li>
<li>Mass Effect</li>
<li>Skyrim</li>
<li>Lemmings</li>
<li>Halo</li>
<li>Super Marios Bros.</li>
</ol>
</div>
</section>
<section id="portfolio"></section>
<section id="resume">
<h3>Resume</h3>
<div id="workExperience">
<h4>Work Experience</h4>
<ul>
<li>Operations Analyst - Zillow Group</li>
<li>Support Consultant - Zillow Group</li>
<li>Customer Service Investigator - Trion Worlds</li>
<li>Customer Support Lead - Trion Worlds</li>
</ul>
</div>
<div id="education">
<h4>Education</h4>
<ul>
<li>University of Texas - BA Linguistics 2009</li>
<li>Code Fellows - 201: Foundations of Software Development</li>
</ul>
</div>
</section>
<section id="contactMe"></section>
</main>
<footer class="container"></footer>
<script src="js/app.js"></script>
</body>
</html>