-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbio.html
More file actions
67 lines (62 loc) · 2.36 KB
/
bio.html
File metadata and controls
67 lines (62 loc) · 2.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jack Skates - Bio</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="bio.html">Bio</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
</header>
<main class="bio-main">
<section id="bio">
<h1>About Me</h1>
<div class="intro">
<p>I'm a 28 year old, London based Software Engineer currently working with Sky</p>
</div>
<div class="bio-section">
<h2>My Interests</h2>
<ul class="interests">
<li>Football - Life-long Chelsea fan, willing to let 11 men kicking a ball dictate my entire mood for the weekend</li>
<li>Games - Many many hours sunk into virtual worlds, 10/10 no regrets</li>
<li>London - Moved to the best city on the planet, never looked back</li>
</ul>
</div>
<div class="bio-section">
<h2>Skills & Strengths</h2>
<div class="skills">
<div class="skill">
<p>Programming Languages - JavaScript, Python, C, Go, Ruby</p>
</div>
<div class="skill">
<p>Frameworks - React, ReactNative, NodeJS </p>
</div>
<div class="skill">
<p>Teamwork - Agile, Scrum, Sprints, Tickets</p>
</div>
</div>
</div>
<div class="bio-section">
<h2>Fun Facts About Me</h2>
<ul class="fun-facts">
<li>Youngest First Dan Black Belt in Karate in Sussex </li>
<li>Once played Brian May's "Red Special" Guitar</li>
<li>Spent 7 years in the Music Industry and lived to tell the tale</li>
</ul>
</div>
</section>
</main>
<footer>
<p>© 2024 Jack Skates</p>
</footer>
</body>
</html>