-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (123 loc) · 4.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="base.css" />
<link rel="stylesheet" href="layout.css" />
<link rel="stylesheet" href="module.css" />
<link rel="stylesheet" href="theme.css" />
<script
src="https://kit.fontawesome.com/89e2f8287a.js"
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css?family=Poppins&display=swap"
rel="stylesheet"
/>
<title>Stephen Clark</title>
</head>
<body class="bg-color">
<header id="home" class="home target">
<h1 class="name">Stephen Clark</h1>
<h2>Front End Web Developer</h2>
</header>
<div style="white-space: nowrap;" class="homeArrow mobile-Arrow" id="homeArrow">
<a href=javascript:void(0)><i class="fas fa-arrow-up link"></i></a>
</div>
<nav id="navbar" class="navbar">
<a href=javascript:void(0) class="link" id="resumeLink">Resume</a>
<a href=javascript:void(0) class="link" id="skillsLink">Projects</a>
<a href=javascript:void(0) class="link" id="aboutmeLink">About Me</a>
<a href=javascript:void(0) class="link" id="contactLink">Hire Me</a>
</nav>
<div class="container" id="container">
<section class="intro" id="intro">
<p class="intro">
Hi! I am front-end web developer that likes to build webpages. I
learned my skills through a program named
<a
href="https://vetswhocode.io/"
id="vwc-link"
aria-label="Vets Who Code dot com"
>Vets Who Code,</a
>
a veteran-led program that trains veterans in web development.
</p>
</section>
<section class="resume target" id="resume">
<h3 class="employment">Employment</h3>
<p class="usmc1">
20–year veteran of the U.S. Marine Corps
</p>
<h3 class="education">Education</h3>
<p>
2019: Excelsior College – Bachelor Science, Information Technology
</p>
<p>2019: Vets Who Code Web Developer Boot Camp</p>
<ul class="bootcamp">
<li>HTML5/CSS3</li>
<li>Javascript</li>
<li>Computer Science</li>
<li>JAMstack, React, Gatsby, and GraphQL</li>
<li>Web Accessibility</li>
<li>UX/UI Design Principles</li>
</ul>
</section>
<section id="skills" class="target">
<div class="github-widget" data-username="gixxerblade"></div>
<script src="https://unpkg.com/[email protected]/dist/widget.js"></script>
</section>
<article class="aboutme target" id="aboutme">
<h3 class="aboutme">About Me</h3>
<div>
<p class="aboutme">
I am retired from the United States Marine Corps and live in North
Carolina. Since I have finished serving, I have taken on some new
challenges. I am hoping that my education and the Vets Who Code
program will lead me to a new career in technology and will make me
better rounded in the STEM field. My hobbies include cycling,
gardening, watching movies, and traveling. I have created a small
business where I make gourmet pickles named
<a href="http://www.angrypickles.com" id="ap">Angry Pickles</a>. In
my off-time, I can usually be found either messing around in my
garage, making pickles, or cycling through the local countryside.
</p>
</div>
</article>
</div>
<section class="contact target" id="contact">
<h3 class="contact">Contact</h3>
<ul class="contacts">
<li class="email">
<a href="mailto:[email protected]"
><i class="fas fa-envelope-square"></i
></a>
</li>
<li class="twitter">
<a href="http://www.twitter.com/gixxerblade"
><i class="fab fa-twitter-square"></i
></a>
</li>
<li class="linkedin">
<a href="https://www.linkedin.com/in/stephen-clark-5319406/"
><i class="fab fa-linkedin"></i
></a>
</li>
<li class="github">
<a href="https://github.com/gixxerblade"
><i class="fab fa-github-square"></i
></a>
</li>
<li class="devto">
<a href="https://dev.to/gixxerblade"><i class="fab fa-dev"></i></a>
</li>
</ul>
</section>
<script src="main.js" async></script>
</body>
</html>