-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Alex Harman</title>
<meta name="description" content="A personal website for Alex Harman">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="style.css"/>
</head>
<body class="parallax-container">
<header class="parallax-group downs-header">
<h1 class="nameHeader">Alex Harman</h1>
<div class="parallax-layer sun-layer">
<img class="sun-image" src="assets/sun.svg" alt="sun"/>
</div>
<div class="parallax-layer hill-3-layer">
<img class="hill-image" src="assets/hill-3.svg" alt="hill"/>
</div>
<div class="parallax-layer hill-2-layer">
<img class="hill-image" src="assets/hill-2.svg" alt="hill"/>
</div>
<div class="parallax-layer hill-1-layer">
<img class="hill-image" src="assets/hill-1.svg" alt="hill with dog"/>
</div>
</header>
<main class="parallax-group content-container">
<div class="content">
<p>Hello, I'm Alex. I'm a software developer. You can find me at the links below.</p>
<div class="links">
<a class="links-item" href="https://github.com/AHarman">
<img class="github-icon" alt="My GitHub page" src="assets/GitHub.png"/>
Projects
</a>
<a class="links-item" href="https://www.linkedin.com/in/alexanderharman/">
<img class="linkedin-icon" alt="My LinkedIn Profile" src="assets/LinkedIn.png"/>
Profile
</a>
<a class="links-item" href="https://www.instagram.com/aleskharman/">
<img class="instagram-icon" alt="Some of my photos" src="assets/Instagram.png"/>
Pictures
</a>
</div>
<p>
I can also be contacted at via email at <a href="mailto:[email protected]">[email protected]</a>. The source code for this page can be found in <a href="https://www.github.com/AHarman/personal-site-2020">this repository</a>
</p>
</div>
</main>
</body>
</html>