-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (90 loc) · 4.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Kitty Allen | Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<a class="name__link" href="#index">
<span class="name__link__short">ka</span>
<span class="name__link__long">kitty allen</span>
</a>
<!--Navigation Sections -->
<div class="burger" id="nav">
<div class="burger__line"></div>
<div class="burger__line"></div>
<div class="burger__line"></div>
</div>
<div class="overlay" id="full_nav">
<span id="closebtn" class="closebtn">×</span>
<div class="overlay__content">
<a id="about__link" href="#about"><span class="overlay__content__link">about</span></a>
<a id="project__link" href="#project1"><span class="overlay__content__link">projects</span></a>
<a id="contact__link" href="#contact"><span class="overlay__content__link">contact</span></a>
</div>
</div>
<ul class="navlist">
<li>
<a href="#about" class="link__hidden">01 <span class="hidden"> - about</span></a>
</li>
<li>
<a href="#project1" class="link__hidden">02 <span class="hidden"> - projects</span></a>
</li>
<li>
<a href="#contact" class="link__hidden">03 <span class="hidden"> - contact</span></a>
</li>
</ul>
<section id="index" class="fullscreen index">
<div class="text__container">
<h3 class="index__title">Creative Developer</h3>
<h3 class="index__tagline">Kitty Allen</h3>
</div>
</section>
<section id="about" class="fullscreen about">
<div class="text__container">
<h3 class="about__title">Creative Developer</h3>
<p class="about__tagline">My name is Kitty Allen, curious and enthusiastic, I am skilled in both front and back end development. Having recently graduated from Founders & Coders, a 16 week intensive bootcamp course I am currently looking for work.</p>
<p class="about__tagline">You can find me on <a href="https://github.com/parkhabit" target="_blank">github</a> and <a href="https://uk.linkedin.com/in/kitty-allen-970014a0" target="_blank">linkedin</a>.</p>
</div>
</section>
<section id="project1" class="fullscreen project1">
<div class="project__container__background"></div>
<div class="project__container">
<h3 class="project1__title">Home Safe</h3>
<p class="project__tagline">A web app for parents and primary schools. Allowing parents to login an notify a school that someone other than themselves will be picking up their child.</p>
<a class="project__link" href="https://homesafefac.herokuapp.com/" target="_blank">Discover</a>
</div>
<div class="project__link__circles"><a href="#project1" class="highlighted">.</a><a href="#project2">.</a><a href="#project3">.</a></div>
</section>
<section id="project2" class="fullscreen project2">
<div class="project__container__background"></div>
<div class="project__container">
<h3 class="project2__title">Football Game</h3>
<p class="project__tagline">An MPU sized football game created as part of a tech test I completed for Phantom, a creative agency based in London.</p>
<a class="project__link" href="https://parkhabit.github.io/football/" target="_blank">Discover</a>
</div>
<div class="project__link__circles"><a href="#project1">.</a><a href="#project2" class="highlighted">.</a><a href="#project3">.</a></div>
</section>
<section id="project3" class="fullscreen project3">
<div class="project__container__background"></div>
<div class="project__container">
<h3 class="project3__title">Lambeth Larder</h3>
<p class="project__tagline">A web app created for <a href="http://www.lambethlarder.org/">Lambeth Larder</a> to help people living in the Lambeth area easily find emergency food and advice.</p>
<a class="project__link"href="#">Discover</a>
</div>
<div class="project__link__circles"><a href="#project1">.</a><a href="#project2">.</a><a href="#project3" class="highlighted">.</a></div>
</section>
<div id="contact" class="fullscreen contact">
<div class="text__container">
<h2>let's talk, drop me a line</h2>
<p>+44 7490388067</p>
<p>[email protected]</p>
</div>
</div>
</body>
<script type="text/javascript" src="./script.js"></script>
</html>