This repository was archived by the owner on Aug 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
75 lines (63 loc) · 2.98 KB
/
Copy pathcontact.html
File metadata and controls
75 lines (63 loc) · 2.98 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
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en-GB">
<head>
<title>Jacob Brown</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Quicksand">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script type="text/javascript" src="main.js" defer></script>
</head>
<body>
<header>
<div class="title">
<h1>
<div class="front">
Jacob
</div>
<div class="behind">
<br> Brown
</div>
<br><br><br>
</h1>
</div>
</header>
<nav>
<div href="./contact.html" class="activeNav a-fade transition" >Contact</div>
<div href="./about.html" class="a-fade transition" >About Me</div>
<div href="./" class="a-fade transition">Home</div>
</nav>
<main>
<div class="centred pureText">
<div class="subtitle">Contacts</div>
<p>I'm happy to have a chat about anything, work-related or not -- just drop me a message!</p>
<div>
<a class="iconContainer" href="https://www.linkedin.com/in/jacob-ea-brown/">
<img class="icon filter-white" src="./files/icons/linkedin.svg">
</a>
<a class="iconContainer" href="https://github.com/jacbn">
<img class="icon filter-white" src="./files/icons/github.svg">
</a>
<a class="iconContainer" href="https://m.me/100054856335934">
<img class="icon filter-white" src="./files/icons/messenger.svg">
</a>
<a class="iconContainer" href="https://twitter.com/jcbbn">
<img class="icon filter-white" src="./files/icons/twitter.svg">
</a>
<span class="iconContainer tooltip">
<img class="icon filter-white" src="./files/icons/discord.svg">
<span class="tooltiptext">jazza#6377</span>
</span>
<a class="iconContainer" href="https://open.spotify.com/user/h8eggwh6qh1yei8m3dopgyek0">
<img class="icon filter-white" src="./files/icons/spotify.svg">
</a>
<span class="iconContainer tooltip">
<img class="icon filter-white" src="./files/icons/switch.svg">
<span class="tooltiptext">SW-0524-5461-9909</span>
</span>
</div>
</div>
</main>
<footer></footer>
</body>
<script type="text/javascript" src="./fade.js"></script>
</html>