-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·173 lines (158 loc) · 5.71 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Chad Watkins</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.5.0/css/all.css' crossorigin='anonymous'>
</head>
<body>
<div id="mobile-menu-open" class="shadow-large">
<i class="fas fa-bars" aria-hidden="true"></i>
</div>
<!-- End #mobile-menu-toggle -->
<header>
<div id="mobile-menu-close">
<span>Close</span> <i class="fas fa-times" aria-hidden="true"></i>
</div>
<ul id="menu" class="shadow">
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#experience">Experience</a>
</li>
<li>
<a href="#education">Education</a>
</li>
<li>
<a href="#skills">Skills</a>
</li>
</ul>
</header>
<!-- End header -->
<div id="lead">
<div id="lead-content">
<h1>Chad Watkins</h1>
<h2>Software Engineer</h2>
<a href="/files/chad-watkins-resume.pdf" class="btn btn-light">Download Resume</a>
</div>
<!-- End #lead-content -->
<div id="lead-overlay"></div>
<div id="lead-down">
<span>
<i class="fas fa-chevron-down" aria-hidden="true"></i>
</span>
</div>
<!-- End #lead-down -->
</div>
<!-- End #lead -->
<div id="about">
<div class="container">
<div class="row">
<div class="col-md-4">
<h2 class="heading">About Me</h2>
</div>
<div class="col-md-8">
<p>
I’m a hard working individual who loves creative problem solving. I'm always striving to create clean code and will meet the business's needs.
</p>
</div>
</div>
</div>
</div>
<!-- End #about -->
<div id="experience" class="background-alt">
<h2 class="heading">Experience</h2>
<div id="experience-timeline">
<div data-date="October 2014 – Current">
<h3>doTERRA</h3>
<h4>Software Developer</h4>
<ul>
<li>Helped build doterra.com on top of Hybris platform using Java Spring MVC</li>
<li>Spearheaded converting frontend application from jsp to React</li>
<li>Helped with unit testing in Jest and Junit</li>
<li>Managed login portal application</li>
<li>Contributed to High Sales Promotion Web Application</li>
<li>Co-lead on Link Generator Project</li>
<li>Created UI library for doTERRA frontend applications</li>
</ul>
</div>
<div data-date="July 2010 – October 2014">
<h3>Infiniti Creations</h3>
<h4>Graphic Designer</h4>
<ul>
<li>Worked to with multiple clients to create logo designs for dietary supplements
</li>
</ul>
</div>
</div>
</div>
<!-- End #experience -->
<div id="education">
<h2 class="heading">Education</h2>
<div class="education-block">
<h3>Utah Valley University</h3>
<span class="education-date">Sept 2010 - Sept 2014</span>
<h4>Bachelor of Science in Internet Technologies</h4>
<p>
</p>
</div>
<!-- End .education-block -->
</div>
<!-- End #education -->
<div id="skills">
<h2 class="heading">Skills</h2>
<ul>
<li>JavaScript</li>
<li>Typescript</li>
<li>React</li>
<li>Node.js</li>
<li>Next.js</li>
<li>Git</li>
<li>Jest</li>
<li>Cypress</li>
<li>CSS</li>
<li>HTML</li>
</ul>
</div>
<!-- End #skills -->
<footer>
<div class="container">
<div class="row">
<div class="col-sm-5 copyright">
<p>
Copyright © 2024 Chad Watkins
</p>
</div>
<div class="col-sm-2 top">
<span id="to-top">
<i class="fas fa-chevron-up"></i>
</span>
</div>
<div class="col-sm-5 social">
<ul>
<li>
<a href="https://github.com/chadwtkns" target="_blank"><i class="fab fa-github" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/chad-watkins-7460a851/" target="_blank"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- End footer -->
<script
src="https://code.jquery.com/jquery-3.5.0.min.js"
crossorigin="anonymous"></script>
<script src="js/scripts.min.js"></script>
</body>
</html>