-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (82 loc) · 3.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap" rel="stylesheet">
<title>Hannah Gooding's Portfolio</title>
</head>
<body>
<main class="page">
<section id="landingPage" class="page-padding landing-section">
<h1 class="landing-page__title page__titles">Hannah Gooding</h1>
<h2 class="landing-page__subtitle page__titles">Full-Stack Developer</h2>
<div class="landing-section__svg">
</div>
</section>
<section id="about" class="page-padding">
<h2 class="page__title page__titles">About Me</h2>
<p class="paragraphs">I have been a Software Engineer at Lyst since October 2020.</p>
<p class="paragraphs">Before that I graduated from the Founders and Coders coding bootcamp in July 2020.</p>
<p class="paragraphs">My previous experience working in fashion retail and media exposed me to the wastefulness of the industry on a global scale. I was inspired to move into programming because I saw how companies are using technology to solve life-changing problems, particularly with sustainability and accessibility.</p>
<p class="paragraphs">I made my first steps into coding through talking to developers at workshops and meet-ups, so now I enjoy paying it forward by coaching at codebar and for Code First Girls.</p>
<h3 class="page__subtitle page__titles section-padding">Tech Stack</h3>
<ul class="tech-stack__list">
<li class="tech-stack__list-item">
<svg role="img" viewBox="0 0 25 25">
<use xlink:href="./icons.svg#html-icon"></use>
</svg>
<p>HTML</p>
</li>
<li class="tech-stack__list-item">
<svg role="img" viewBox="0 0 25 25">
<use xlink:href="./icons.svg#css-icon"></use>
</svg>
<p>CSS</p>
</li>
<li class="tech-stack__list-item">
<svg role="img" viewBox="0 0 25 25">
<use xlink:href="./icons.svg#javascript-icon"></use>
</svg>
<p>JavaScript</p>
</li>
<li class="tech-stack__list-item">
<svg role="img" viewBox="0 0 30 30">
<use xlink:href="./icons.svg#python-icon"></use>
</svg>
<p>Python</p>
</li>
<li class="tech-stack__list-item">
<svg role="img" viewBox="0 0 25 25">
<use xlink:href="./icons.svg#postgresql-icon"></use>
</svg>
<p>PostgreSQL</p>
</li>
</ul>
</section>
<section class="page-padding contact-section">
<h2 class="page__title page__titles">Contact Me</h2>
<p>Email: [email protected]</p>
<ul class="contact-section__link">
<a aria-label="GitHub Profile Link" class="contact-section__link" href="https://github.com/hannahgooding" target="_blank">
<svg role="img" viewBox="0 0 25 25">
<use xlink:href="./icons.svg#github-icon"></use>
</svg>
</a>
<a aria-label="LinkedIn Profile Link" class="contact-section__link" href="https://www.linkedin.com/in/hannahwsgooding/" target="_blank">
<svg role="img" viewBox="0 0 25 25">
<use xlink:href="./icons.svg#linkedin-icon"></use>
</svg>
</a>
<a aria-label="Twitter Profile Link" class="contact-section__link" href="https://twitter.com/hannahwsgooding" target="_blank">
<svg role="img" viewBox="0 0 25 25">
<use xlink:href="./icons.svg#twitter-icon"></use>
</svg>
</a>
</ul>
</section>
</main>
</body>
<script src="script.js"></script>
</html>