-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (53 loc) · 2.32 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Peter Adam's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body id="home">
<div class="main-nav">
<ul class="nav">
<li class="name">Peter Adams</li>
<li><a href="index.html" class="selected">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<header>
<img src="images/HalfMeEyes2.JPG" alt="Picture of my eyes during halloween" class="profile-image">
<h1 class="tag name">Hello, I’m Peter & its nice to meet you.</h1>
<p class="tag location">I live in London, UK.</p>
</header>
<main class="flex">
<div class="card">
<h2>Background</h2>
<p>I am a budding full stack developer, professional tinkerer, Chelsea FC fan and avid gamer. I currently live in London and I am on a mission to quit my day job and become a developer full time... just as soon as I get over my irrational fear of programming :(.</p>
<p>When I am not working or learning, you can either find me buried in a good fantasy book or trying to level up my warlock in Destiny (the game).</p>
</div>
<div class="card">
<h2>Goals</h2>
<p>I want to be proficient in developing not only beautiful front-end, but also be equally good in back-end technologies and everything in-between</p>
<ul class="skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Ruby</li>
<li>Rails</li>
<li>PHP</li>
<li>JQuery</li>
<li>Phyton</li>
</ul>
<p>My end goal is to be able to work for myself, creating sites and services that can fufill yet to be discovered needs in the world.</p>
</div>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/tcherokee" class="social twitter">Twitter</a></li>
<li><a href="https://github.com/tcherokee" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2015, Peter Adams</p>
</footer>
</body>
</html>