-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (65 loc) · 2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ben Harloe: Serverless Development</title>
<link rel="stylesheet" href="styles/main.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Cardo"/>
</head>
<body>
<main class="overflow--auto">
<h1 class="color--skyBlue section__heading--largest">
<!--Your name goes here -->
Ben Harloe
</h1>
<ul class="section--social">
<!--Links to relevant professional social media & resume -->
<!-- See: http://fontawesome.io/icons/#brand for more -->
<!-- Link to Linked In profile -->
<li class="socialWrapper">
<a class="color--skyBlue social"
title="LinkedIn Profile"
target="_blank"
href="#">
<i class="fa fa-linkedin"></i>
</a>
</li>
<!-- Link to GitHub profile -->
<li class="socialWrapper color--skyBlue">
<a class="social color--skyBlue"
title="GitHub Profile"
target="_blank"
href="#">
<i class="fa fa-github"></i>
</a>
</li>
<!-- Link to resume, probably a .pdf -->
<li class="socialWrapper">
<a class="social color--skyBlue"
title="Resume"
href="#">
<i class="fa fa-file-text"></i>
</a>
</li>
</ul>
</main>
<section class="background--skyBlue section">
<h2 class="color--cloud margin--none section__text--centered">
Portfolio
</h2>
</section>
<div id="example-work"></div>
<section class="background--skyBlue section">
<h2 class="color--cloud margin--none section__text--centered">
About Me
</h2>
</section>
<section class="section section--alignCentered section--description">
<p class="color--darkgrey section__description">
I am a fast learner who is drawn to solving difficult problems, with a degree in Business and Mathematics, and previous experience in IT and Cloud Services (AWS Certified Developer Associate). Currently looking for a technical role in a disruptive company.
</p>
<script type="text/javascript" src="dist/bundle.js"></script>
</body>
</html>