-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (75 loc) · 3.76 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Luke Bennett'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>
<!-- NAVIGATION BAR -->
<div class="main-nav">
<ul class="nav">
<li class="name">Luke Bennett</li>
<li><a href="index.html" class="selected">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="passion-gallery.html">Passion Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<!-- HEADER IMAGE AND TITLES - NORMAL IMAGE AND 935PX RESONSIVE IMAGE -->
<header class="kilimanjaro">
<img src="images/me.jpg" alt="Luke Bennett Profile Image" class="profile-image">
<h1 class="tag name">Hi There! My name is <strong>Luke!</strong></h1>
<p class="tag location">I live in Birmingham, UK.</p>
</header>
<header class="kilimanjaro-large">
<img src="images/me.jpg" alt="Luke Bennett Profile Image" class="profile-image">
<h1 class="tag name">Hi There! My name is <strong>Luke!</strong></h1>
<p class="tag location">I live in Sutton Coldfield, UK.</p>
</header>
<!-- MAIN CONTENT - BACKGROUND CARD -->
<main class="flex">
<!-- CARDS -->
<div class="card">
<h2>Background</h2>
<p>I am starting out my journey to becoming a <strong>Web Developer</strong>. About 1 year ago I developed an interest in coding. Over the past year I launched two online businesses, and loved it so much I enrolled on a course with Team Treehouse! I have learned a lot and now I am ready for a challenge!</p>
<p>I am currently a Trainee Manager and work for a metal and plastics stockholder in Derby, UK. I am also an avid musician, I love to write, record and perform Guitar, Vocals and Drums.</p>
<p>I also enjoy cycling, <i>Snowboarding</i>, <i>walking</i> and many more things!
</div>
<!-- MAIN CONTENT - GOAL CARD MAIN CONTENT -->
<div class="card">
<h2>Goals</h2>
<p>It is super important to have a great foundation, that is why I love <b>'TeamTreehouse'</b>. It has amazing courses taught by incredible teachers.
I am interested in learning as much as I possibly can. I love learning new things. The languages I have already learned are:</p>
<ul class="skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<p>Some other languages I am really interested in learning are:</p>
<ul class="skills">
<li>PHP</li>
<li>React.js</li>
<li>Python</li>
<li>jQuery</li>
<li>SASS</li>
<li>and more!</li>
</ul>
<p>I would love to work for a modern forward-thinking agency, and help to grow theirs and other businesses online presence.
A company that motivates and challenges me that I can help to grow, but also learn a lot and grow myself.</p>
<!-- HORIZONTAL RULE AND GOAL CARD IMAGE -->
<hr>
<img src="images/Laptop-Work.jpg" alt="Laptop-on-Desk-Work">
</div>
<!-- FOOTER AND SOCIAL LINKS -->
</main>
<footer>
<ul>
<li><a href="https://twitter.com/lukebennettuk" class="social twitter" target="_blank">Twitter</a></li>
<li><a href="https://github.com/LukeBennettUK" class="social github" target="_blank">Github</a></li>
</ul>
<p class="copyright"><small>© 2017, Luke Bennett</small></p>
</footer>
</body>
</html>