-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (82 loc) · 4.28 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" class="high-contrast">
<head>
<meta name="description" content="Site and portfolio for Luke Harby, Frontend / JavaScript developer.">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Luke Harby. Front End developer</title>
<link rel="stylesheet" href="app/css/app.min.css" />
<link rel="stylesheet" href="io-files/css/main.css" />
</head>
<body>
<header>
<nav>
<h1><a href="#index">Luke Harby</a></h1>
<ul class="flat-list">
<li><a href="#introduction">Intro</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#links">Links</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="index">
<p>I am Luke Harby, a Frontend and JavaScript developer. Hi!</p>
<p>Check the <a href="#introduction">intro</a></p>
<img class="img__small" src="io-files/img/me.jpg" alt="Portrait of me looking somewhat grumpy">
</section>
<section id="introduction">
<p>Here is a nice little summary of my skills.</p>
<ul>
<li>🧑🤝🧑 I am people driven, I like cross-communication, working in teams, problem solving and enjoy being client facing.</li>
<li>👁️ I am passionate about web accessibility.</li>
<li>💾 I am very keen on regularly updated documentation.</li>
<li>🤖 I like clean, modular, reusable and light JavaScript implementations.</li>
<li>🖍️ I prefer commented code.</li>
</ul>
<p> </p>
<p>Check the <a href="#portfolio">portfolio</a> to see some examples of sites I have built.</p>
</section>
<section id="portfolio">
<p>Freelance</p>
<ul>
<li><a href="https://botsin.space/@glyphbot" target="_blank">Glyphbot</a></li>
<li><a href="https://slackwise.org.uk/" target="_blank">slackwise</a></li>
<li><a href="http://www.jessicaharby.com/" target="_blank">Jessica Harby</a></li>
<li><a href="https://studiomalarkey.co.uk/" target="_blank">Studio Malarkey</a></li>
<li><a href="https://alpha-png.tumblr.com/" target="_blank">aplha-png</a></li>
<li><a href="http://tappazine.com/" target="_blank">Tappa Tappa Tappa</a></li>
<li><a href="https://www.shell-like.com/" target="_blank">Shell Like</a></li>
<li><a href="https://www.amylaypettifer.co.uk/" target="_blank">Amy Lay-Pettifer</a></li>
</ul>
<p> </p>
<p>Professional</p>
<p>
As a professional developer I have helped to build websites and applications for Santander, Land Rover,
Carlsberg (Brooklyn Brewery, Holsten), ECCO, Activia, Mercedes Benz, Volkswagen, Nike, Ford, HP, Epson, Pfizer and more.
</p>
<p>Please do <a href="#contact">get in touch</a> if you would like to disccus a project.</p>
</section>
<section id="links">
<ul>
<li><a href="https://www.linkedin.com/in/luke-harby/" target="_blank">Linkedin</a></li>
<li><a href="https://github.com/lharby" target="_blank">Github</a></li>
<li><a href="https://octodon.social/@lukeharby" target="_blank">Mastodon</a></li>
</ul>
</section>
<section id="contact">
<div>e: [email protected]</div>
<div>t: 07816 177880</div>
</section>
</main>
<footer>
© Luke Harby <span class="year"></span>
</footer>
</body>
<script type="text/javascript" defer>
var yearElem = document.querySelector('.year');
var currentYear = new Date().getFullYear();
yearElem.textContent = currentYear;
</script>
</html>