-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
376 lines (332 loc) · 14.8 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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Marisa Brantley, Web Developer</title>
<link rel="icon" type="image/x-icon" href="/img/favicon.png">
<meta name="description" content="Portfolio of Marisa Brantley">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Portfolio of Marisa Brantley">
<meta property="og:type" content="website">
<meta property="og:image" content="https://i.ibb.co/qjTQWwh/profile-pic.jpg">
<meta property="og:url" content="www.marisabrantley.com">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@marisabrantley">
<meta name="twitter:title" content="Portfolio of Marisa Brantley">
<meta name="twitter:description" content="Frontend Developer and UI Designer">
<meta name="twitter:image" content="https://i.ibb.co/0KDLwWK/portfolio-twitter-card-large.png">
<meta name="twitter:image:alt" content="Marisa Brantley">
<meta name="color-scheme" content="light dark">
<link rel="manifest" href="site.webmanifest">
<link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml">
<link rel="marisa-brantley-logo" href="icon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cardo&family=Montserrat:wght@200;300;400;500&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="preconnect" href="https://www.google.com">
<link rel="preconnect" href="https://www.gstatic.com" crossorigin>
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EDP6G65X6R"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-EDP6G65X6R');
</script>
<body>
<header>
<div id="home">
<div class="content-wrapper">
<nav class="nav-container">
<ul class="nav-list">
<li class="nav-item">
<a href="#home" class="nav-link home active-link">
<i class="fa-solid fa-house nav-icon"></i>
<span>Home</span>
</a>
</li>
<li class="nav-item">
<a href="#about" class="nav-link">
<i class="fa-solid fa-user nav-icon"></i>
<span>About</span>
</a>
</li>
<li class="nav-item">
<a href="#projects" class="nav-link">
<i class="fa-solid fa-briefcase nav-icon"></i>
<span>Projects</span>
</a>
</li>
<li class="nav-item">
<a href="#skills" class="nav-link">
<i class="fa-solid fa-pen-ruler nav-icon"></i>
<span>Skills</span>
</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link contact-item">
<i class="fa-solid fa-square-phone nav-icon"></i>
<span>Contact</span>
</a>
</li>
</ul>
</nav>
<div class="toggle-button">
<input type="checkbox" class="checkbox" id="checkbox" value="Toggle for Dark Mode">
<label for="checkbox" class="label" id="dark-mode-toggle-button">
<i class="fas fa-moon"></i>
<i class="fas fa-sun"></i>
<span class="ball"></span>
<span class="visually-hidden">Toggle for Dark/Light Mode</span>
</label>
</div>
<div class="name-title">
<h1>Marisa Brantley</h1>
<h2 id="job-title">Frontend Web Developer & UI Designer</h2>
<a href="#contact" id="contact-link">contact me</a>
</div>
</div>
</div>
</header>
<main>
<section id="about">
<div class="content-wrapper">
<div class="about-wrapper">
<figure>
<img src="img/marisa-brantley.jpeg" alt="Photo of Marisa Brantley" id="profile-image">
</figure>
<div class="about-me">
<h3>
Hi! I'm Marisa Brantley.
</h3>
<h4>I'm a Frontend Developer and UI Designer who empathetically creates accessible, engaging, functional,
and aesthetically pleasing websites.</h4>
<p class="about-text">
My coding journey began when I needed a website for my online retail business. I took the initiative to
learn to do it myself, and my love of coding bloomed.
</p>
<p>
I enjoy creating websites… selecting the perfect colors, layouts, and images, to using clean and efficient
code that conveys the most satisfying, effective, and visually appealing experiences for users.
With backgrounds in law and e-commerce, I appreciate details, meeting deadlines, clear communication, and
making businesses’ visions come to life.
</p>
<p>
<span>Can't wait to work with you!</span>
</p>
<div class="about-icons">
<div class="icon-wrapper">
<ul class="me-icons">
<li>
<i class="fa-solid fa-laptop-code"></i>
<span>Web Developer</span>
</li>
<li>
<i class="fa-solid fa-pen-ruler"></i>
<span>UI Designer</span>
</li>
<li>
<i class="fa-solid fa-mug-hot"></i>
<span>Coffee Lover</span>
</li>
<li>
<i class="fa-solid fa-umbrella-beach"></i>
<span>Beach Cleaner</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="projects">
<div class="content-wrapper">
<h2 class="projects-header">My Projects</h2>
<div class="projects-wrapper">
<div class="project-piece">
<figure>
<img src="img/sticky-notes.png" alt="Sticky Notes App Project">
</figure>
<h3>Super Sticky Notes</h3>
<p class="project-description">A greenfield interactive React app built with multiple components to allow
users to create sticky notes, as well as edit, search through, save, and delete them.</p>
<p><span>Skills: </span>React, JSX, Components</p>
<p><span>Tools: </span>Props, State, GitHub Pages, Visual Studio Code, CodeSandbox</p>
<a class="project-link" href="https://marisabrantley.github.io/sticky-notes-app/" target="_blank">See Sticky Notes Here</a>
</div>
<div class="project-piece">
<figure>
<img src="img/github-project.png" alt="GitHub Repository Project">
</figure>
<h3>GitHub Repo Gallery</h3>
<p class="project-description">This app pulls data from the GitHub API to populate username, bio, number of public repos, and individual repo information; it also has dynamic search functionality.</p>
<p><span>Skills: </span>JavaScript</p>
<p><span>Tools: </span>Rest API, GitHub Pages, Visual Studio Code, CodeSandbox</p>
<a class="project-link" href="https://marisabrantley.github.io/github-repo-gallery/" target="_blank">See GitHub Gallery Here</a>
</div>
<div class="project-piece">
<figure>
<img src="img/word-game.png" alt="Guess the Word Game Project">
</figure>
<h3>Guess the Word Game</h3>
<p class="project-description">Players guess the word by entering one letter at a time. If the player
guesses all the letters correctly before they use up their allotted guesses, they win the game!</p>
<p><span>Skills: </span>JavaScript</p>
<p><span>Tools: </span>GitHub Pages, JSON, Visual Studio Code, CodeSandbox</p>
<a class="project-link" href="https://marisabrantley.github.io/guess-the-word/" target="_blank">See Word Game Here</a>
</div>
</div>
</div>
</section>
<section id="skills">
<div class="content-wrapper">
<h2 class="skills-header">My Skills</h2>
<h3>Developer Skills</h3>
<div class="skills-wrapper">
<p class="skill">React</p>
<p class="skill">JavaScript</p>
<p class="skill">Responsive Web Development</p>
<p class="skill">SASS / SCSS</p>
<p class="skill">HTML and CSS</p>
<p class="skill">WordPress</p>
</div>
<h3>Tech Stack</h3>
<div class="tools-wrapper">
<p class="tool">Git and GitHub</p>
<p class="tool">Chrome DevTools</p>
<p class="tool">Visual Studio Code</p>
<p class="tool">Adobe Creative Suite</p>
<p class="tool">Figma</p>
<p class="tool">Canva</p>
</div>
</div>
</section>
</main>
<div id="contact">
<div class="content-wrapper">
<h2>Contact Me</h2>
<div class="contact-wrapper">
<h3>Let's connect!</h3>
<p> Interested in working together or just want to say hello? <br>Drop me a line!</p>
<div class="contact-info">
<ul class="location">
<li>
<i class="fa-solid fa-location-dot"></i>
</li>
<li>
<a href="https://www.google.com/maps/place/Orange+County,+CA/@33.640814,-117.7803964,10z/data=!3m1!4b1!4m5!3m4!1s0x80dc925c54d5f7cf:0xdea6c3618ff0d607!8m2!3d33.7174708!4d-117.8311428"
target="_blank">Orange County, California</a>
</li>
</ul>
<ul class="telephone">
<li>
<i class="fa-solid fa-mobile-screen-button"></i>
</li>
<li>
<a href="tel:949-342-6820">(949) 342-6820</a>
</li>
</ul>
<ul class="email">
<li>
<i class="fa-solid fa-envelope"></i>
</li>
<li>
<a href="mailto:[email protected]">[email protected]</a>
</li>
</ul>
</div>
<div class="social-media">
<div class="content-wrapper">
<ul class="social-icons">
<li>
<a href="https://www.linkedin.com/in/marisabrantley" aria-label="Clickable icon to view LinkedIn page"
target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://twitter.com/marisabrantley" aria-label="Clickable icon to view X/Twitter page"
target="_blank">
<i class="fa-brands fa-x-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/marisabrantley" aria-label="Clickable icon to view GitHub page"
target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/marisab_oc" aria-label="Clickable icon to view Instagram page"
target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="contact-form">
<div class="form-container">
<form action="https://formsubmit.co/8fe6bfa75a5145252bf25accb224b986" name="contactform" id="contactForm"
class="fcf-form-class" autocomplete="off" method="POST">
<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
<div class="fcf-form-group">
<label for="name" class="fcf-label">Name <span class="asterisk">*</span></label>
<input type="text" name="name" id="name" class="fcf-form-control" aria-labelledby="name" required>
</div>
<div class="fcf-form-group">
<label for="company" class="fcf-label">Company</label>
<input type="text" name="company" id="company" class="fcf-form-control" aria-labelledby="company">
</div>
<div class="fcf-form-group">
<label for="email" class="fcf-label">Email Address <span class="asterisk">*</span></label>
<input type="email" name="email" id="email" class="fcf-form-control" aria-labelledby="email" required>
</div>
<div class="fcf-form-group">
<label for="phone" class="fcf-label">Phone Number</label>
<input type="text" name="phonenumber" id="phone" class="fcf-form-control" aria-labelledby="phone">
</div>
<div class="fcf-form-group">
<label for="message" class="fcf-label">Message <span class="asterisk">*</span></label>
<textarea name="message" id="message" class="fcf-form-control" aria-labelledby="message" rows="5"
maxlength="3000" required></textarea>
</div>
<div class="fcf-form-group">
<input type="submit" name="submit" value="Send Message" id="button" aria-labelledby="button">
</div>
<div class="fcf-form-group">
<input type="hidden" name="_next" value="https://marisabrantley.com/thankyou.html">
<input type="hidden" name="_captcha" value="false">
<input type="hidden" name="_subject" value="Message from Your Contact Form!">
</div>
</form>
</div>
</div>
</div>
</div>
<footer>
<p>©
<script>document.write(new Date().getFullYear())</script> Marisa Brantley | All rights reserved.<br>Made
with <span>♥</span> in California.
</p>
</footer>
<script src="js/main.js"></script>
<script src="https://www.google.com/recaptcha/api.js"></script>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-121690020-1', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
</html>