-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperience.html
108 lines (90 loc) · 3.92 KB
/
experience.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Harry Barnish</title>
<!-- Link to CSS files -->
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/responsive.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.png">
</head>
<body>
<header></header>
<main>
<section>
<section>
<h1 id="typing-title" data-text="My Experience"></h1>
</section>
<!-- Current Roles -->
<section class="box-category">
<h2>Current Roles</h2>
<ul class="box-list">
<!-- Hyperlink London -->
<li class="box-item">
<div class="box-content">
<a href="https://www.hyperlinklondon.com" target="_blank">
<img src="assets/images/experience/hyperlink_logo.jpeg" alt="HyperLink London Logo" class="box-logo">
</a>
<div class="box-header">
<a href="https://www.hyperlinklondon.com" target="_blank">
<h3>Hyperlink London</h3>
</a>
<h2>Head of Software</h2>
<p class="box-time"><em>Sep 2024 - Present</em></p>
<p class="box-type">Part-Time</p>
</div>
</div>
</li>
</ul>
</section>
<!-- Previous Employment -->
<section class="box-category">
<h2>Previous Employment</h2>
<ul class="box-list">
<!-- CyanoCapture -->
<li class="box-item">
<div class="box-content">
<a href="https://cyanocapture.com" target="_blank">
<img src="assets/images/experience/cyanocapture_logo.png" alt="CyanoCapture Logo" class="box-logo">
</a>
<div class="box-header">
<a href="https://cyanocapture.com" target="_blank">
<h3>CyanoCapture</h3>
</a>
<p class="box-time"><em>Jan 2023 - Aug 2024</em></p>
</div>
</div>
<div class="nested-boxs">
<div class="nested-box-item">
<h2>Software Engineer</h2>
<p class="box-time"><em>Sep 2023 - Aug 2024</em></p>
<p class="box-type">Full-Time</p>
</div>
<div class="nested-box-item">
<h2>Software Engineer Summer Intern</h2>
<p class="box-time"><em>Aug 2023 - Sep 2023</em></p>
<p class="box-type">Full-Time</p>
</div>
<div class="nested-box-item">
<h2>Software Engineer Intern</h2>
<p class="box-time"><em>Jan 2023 - May 2023</em></p>
<p class="box-type">Part-Time</p>
</div>
</div>
</li>
</ul>
</section>
</section>
</main>
<footer></footer>
<script src="scripts/include.js"></script>
<script src="scripts/typing-effect.js"></script>
<script src="scripts/header-adjust.js"></script>
</body>
</html>