-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
64 lines (59 loc) · 2.8 KB
/
contact.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
<html>
<head>
<title>Contact</title>
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="style_sheets/style.css">
<link rel="stylesheet" href="style_sheets/mobile_style.css">
<script type="text/javascript" src="contact_cursor.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.6.0.js"></script>
<meta name="description" content=""/>
<base target="_blank">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5RXK7JBGF6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5RXK7JBGF6', { 'anonymize_ip': true });
</script>
</head>
<body>
<!-- <a href="index.html" target="_self" class="info_button" id="home"> Home </a> -->
<div id="nav-placeholder"></div>
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
<!-- Style sheet here is to make sure it's loaded after nav bar-->
<!-- need to figure out how to scope the nav bar style -->
<link rel="stylesheet" href="style_sheets/contact.css">
<div class="container">
<table>
<tr>
<td>Email:</td>
<td><a href="mailto:[email protected]">
<div class="info_button" onmouseover="show_cursor('email_cursor')" onmouseleave="hide_cursor('email_cursor')">[email protected]</div>
</a>
<div class="cursor" id="email_cursor">!</div>
</td>
</tr>
<tr>
<td>Discord:</td>
<td><a href="https://discordapp.com/users/pog7776#7776">
<div class="info_button" id="discord" onmouseover="show_cursor('discord_cursor')" onmouseleave="hide_cursor('discord_cursor')">pog7776#7776</div>
</a><div class="cursor" id="discord_cursor">!</div>
</td>
</tr>
<tr>
<td>LinkedIn:</td>
<td><a href="https://www.linkedin.com/in/jack--cooper/">
<div class="info_button" id="linkedin" onmouseover="show_cursor('linkedin_cursor')" onmouseleave="hide_cursor('linkedin_cursor')">Jack Cooper</div>
</a><div class="cursor" id="linkedin_cursor">!</div>
</td>
</tr>
</table>
</div>
</body>
</html>