-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
225 lines (207 loc) · 6.97 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- this line of code ensures website functions properly on all devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevShirene Portfolio Website</title>
<!-- links to normalize, css file to even out differences between browsers -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css"
/>
<script
src="https://kit.fontawesome.com/4aeb057dc2.js"
crossorigin="anonymous"
></script>
<!-- Google fonts -->
<link
href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,900|Source+Sans+Pro:300,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<div class="logo">
<img src="img/devshirene.png" alt="" />
</div>
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<!-- subcomponent of my navigation above and helps with css styling -->
<ul class="nav__list">
<li class="nav__item"><a href="#home" class="nav__link">Home</a></li>
<li class="nav__item">
<a href="#services" class="nav__link">My Services</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About Me</a>
</li>
<li class="nav__item">
<a href="#work" class="nav__link">My Work</a>
</li>
</ul>
</nav>
</header>
<!-- Introduction -->
<!-- id for anchoring and class for styling -->
<section class="intro" id="home">
<h1 class="section__title section__title--intro">
<strong>Shirene Boyd</strong>
</h1>
<p class="section__subtitle section__subtitle--intro">Full Stack Dev</p>
<img
src="img/dev-shirene-01.png"
alt="a picture of Shirene Boyd smiling"
class="intro__img"
/>
</section>
<!-- My Services -->
<section class="my-services" id="services">
<h2 class="section__title section__title--services">What I do</h2>
<div class="services">
<div class="service">
<h3>Skills</h3>
<p>
JavaScript ES6, HTML, CSS3, React, React Hooks, Node.js, RESTful
APIs, Unit testing, Algorithms, Data structures, Node Package
Manager(NPM), PostgresSQL, Express.js
</p>
</div>
<!--close service-->
<div class="service">
<h3>Tools</h3>
<p>
Mocha, Chai, Homebrew, Git, GitHub, Heroku, Visual Studio Code,
Kanban Board
</p>
</div>
</div>
<!--closes services-->
<a href="#work" class="btn">My Work</a>
</section>
<!-- About Me -->
<section class="about-me" id="about">
<h2 class="section__title section__title--about">Who I am</h2>
<p class="section__subtitle section__subtitle--about">
Developer based out of Midland, TX
</p>
<div class="about-me__body">
<p>
Enthusiastic Fullstack Developer located in West Texas and proficient
in JavaScript, HTML, and CSS. I have a background in responsive web
design and building RESTful APIs.
</p>
<p>
I also have eight years of experience in education as a classroom
teacher. During my time as a teacher, I gained many useful skills such
as communicating effectively, time management, leadership, and team
collaboration.
</p>
<p>
Currently I'm preparing for interviews, working on side projects, and
honing my skills. My curiosity and hard work drive me to do my best
and be my best! I am a risk-taker, incredibly ambitious, and thrilled
to see where my coding journey leads me.
</p>
</div>
<img
src="img/dev-shirene-02.png"
alt="Shirene at her desk black and white"
class="about-me__img"
/>
</section>
<!-- My Work -->
<section class="my-work" id="work">
<h2 class="section__title section__title--work">My Work</h2>
<p class="section__subtitle section__subtitle-work">
A selection of my range of work.
</p>
<div class="portfolio">
<!-- Portfolio item 01 -->
<a href="portfolio-item.html" class="portfolio__item">
<img
src="/img/portfolio-01.png"
alt="Flashcard-O-Matic"
class="portfolio__img"
/>
</a>
<!-- Portfolio item 02 -->
<a href="portfolio-item2.html" class="portfolio__item">
<img
src="img/portfolio-02.png"
alt="GrubDash"
class="portfolio__img"
/>
</a>
<!-- Portfolio item 03 -->
<a href="portfolio-item3.html" class="portfolio__item">
<img
src="img/portfolio-03.png"
alt="We-Love-Movies"
class="portfolio__img"
/>
</a>
<!-- Portfolio item 04 -->
<a href="portfolio-item4.html" class="portfolio__item">
<img
src="img/portfolio-04.png"
alt="Thinkful-Cupid"
class="portfolio__img"
/>
</a>
<!-- Portfolio item 05 -->
<a href="portfolio-item5.html" class="portfolio__item">
<img
src="img/portfolio-05.png"
alt="Pomodoro-Timer"
class="portfolio__img"
/>
</a>
<!-- Portfolio item 06 -->
<a href="portfolio-item6.html" class="portfolio__item">
<img
src="img/portfolio-06.png"
alt="Restaurant-Reservations-System"
class="portfolio__img"
/>
</a>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<a href="mailto:[email protected]" class="footer__link"
>
<ul class="social-list">
<li class="social-list__item">
<a class="social-list__link" href="https://github.com/shirenekboyd"
><i class="fa-brands fa-github"></i
></a>
</li>
<!-- <li class="social-list__item">
<a class="social-list__link" href="https://instagram.com"
><i class="fa-brands fa-instagram"></i
></a>
</li> -->
<!-- <li class="social-list__item">
<a
class="social-list__link"
href="hhttps://www.facebook.com/shirenekadkhodai"
><i class="fa-brands fa-facebook"></i
></a>
</li> -->
<li class="social-list__item">
<a
class="social-list__link"
href="https://www.linkedin.com/in/shirene-boyd"
><i class="fa-brands fa-linkedin-in"></i
></a>
</li>
</ul>
</footer>
<script src="js/index.js"></script>
</body>
</html>