-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
54 lines (54 loc) · 2.07 KB
/
contact.html
File metadata and controls
54 lines (54 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact | Tom Fasham</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul class="inline-list">
<li class="li"><button class="hidden-button" onclick="window.location.href = `index.html`"><strong>HOME</strong></button></li>
<li class="li"><button class="hidden-button" onclick="window.location.href = `works.html`"><strong>MY WORK</strong></button></li>
<li class="li"><button class="hidden-button" onclick="window.location.href = `contact.html`"><strong>CONTACT ME</strong></button></li>
</ul>
</nav>
</header>
<div class="content">
<div class="banner">
<div class="contact-title">
<h1>CONTACT ME</h1>
</div>
</div>
<div class="article" style="padding: 30px;">
<h2 class="white-text">FOLLOW ME ON:</h2>
<p class="white-text">Follow me on these websites to see what I'm up to! </p>
<ul>
<li>Twitter: </li>
<li>Itch.io: </li>
<li>Linkedin: </li>
<li>Tumblr: </li>
</ul>
</div>
<div class="article" style="padding: 30px;">
<h2 class="white-text">TALK TO ME AT:</h2>
<p class="white-text">Feel free to reach out to me here: </p>
<ul>
<li>Discord: LargeKnome</li>
<li>Email: tom@fasham.net.au</li>
</ul>
</div>
<div class="article" style="padding: 30px;">
<h2 class="white-text">MEET ME AT:</h2>
<p class="white-text">You can usually find me at most brisbane indie game events, like 4ZZZ's Indie Game Nights and the Queensland Games Fest. You can also find me at each month's Squiggly River and Big Dev meetups, usually with something to play! </p>
</div>
</div>
<footer>
<ul class="inline-list">
<li> Developed by Tom Fasham for DXB111.</li>
<li> All images & works shown are my own.</li>
<li> Contact me <a href="contact.html">here</a> for questions & concerns. </li>
</ul>
</footer>
</body>
</html>