-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (119 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link href="https://fonts.googleapis.com/css?family=Abel|Barlow+Semi+Condensed|Bubbler+One|Dosis:300|Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<nav class="nav">
<div class="link nav-name" id="profileLink"> Lucy King </div>
<div class="nav-links">
<a class="link" id="skillsLink">Skills</a>
<a class="link" id="projectsLink">Projects</a>
<a class="link" id="contactLink">Contact</a>
</div>
</nav>
<section class="main">
<div class="main__Div main__Profile" id="profile">
<span>Hello!</span><span>I'm a full-stack developer who is passionate about the potential of technology to solve problems and make our world better. I'm looking for an environment which offers opportunities to learn, be creative, write clean and accessible code and work collaboratively.</span>
</div>
<div class="main__Div main__Skills displayNone" id="skills">
<div class="main__Skills__TableCont">
<table class="main__Skills__Table">
<tr>
<th>Languages</th>
<th>Frameworks/</br>Libraries</th>
<th>Testing</th>
<th>Design</th>
<th>Databases</th>
<th>Tools/Other</th>
</tr>
<tr>
<td>Javascript</td>
<td>Node.js</td>
<td>Tape</td>
<td>InVision</td>
<td>PostgreSQL</td>
<td>Git & Github</td>
</tr>
<tr>
<td>R</td>
<td>Express.js</td>
<td>QUnit</td>
<td>Figma</td>
<td></td>
<td>TDD</td>
</tr>
<tr>
<td>HTML5</td>
<td>React</td>
<td>Travis CI</td>
<td></td>
<td></td>
<td>Accessibility</td>
</tr>
<tr>
<td>Markdown</td>
<td>Handlebars</td>
<td>CodeCov</td>
<td></td>
<td></td>
<td>Pair programming</td>
</tr>
<tr>
<td>CSS3</td>
<td>Plotly.js</td>
<td></td>
<td></td>
<td></td>
<td>Heroku</td>
</tr>
<tr>
<td>SASS</td>
<td>Leaflet.js</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
<div class="main__Skills__CV">
<p> Download my C.V. here: </p>
<a href="./assets/pdfCV.pdf" download="lucykingCV"><img src="assets/cv.png"></a>
</div>
</div>
<div class="main__Div main__Projects displayNone" id="projects">
<div class= "main__Projects__Photos">
<a href="https://github.com/fac-12/Albert-Kennedy"><img src="assets/atkScreenShot.png"></a>
<a href="https://github.com/fac-12/upShop"><img src="assets/upShopScreenShot.png"></a>
<a href="https://github.com/fac-12/What-the-FAC-is-for-dinner"><img src="assets/wtfScreenShot.png"></a>
</div>
</div>
<div class="main__Div main__Contact displayNone" id="contact">
<div class="main__Contact__Cont">
<div class="main__Contact__Form">
<form action="https://formspree.io/[email protected]" method="POST">
<label>Name:</label>
<input type="text" name="name" required>
<label>Email:</label>
<input type="email" name="_replyto" required>
<label>Message:</label>
<textarea name="message" required></textarea>
<input type="submit" value="Send" id="submitBtn">
<input type="hidden" name="_next" value="//lucymk.github.io/portfolio/" />
</form>
</div>
<div class="main__Contact__Links">
<a href="mailto:[email protected]?Subject=Website%20inquiry"><img src="assets/envelope.png"></a>
<span>Email me at [email protected], or check me out on Github</span>
<a href="https://github.com/lucymk"><img src="assets/github.png"></a>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="index.js"></script>
</body>
</html>