-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
42 lines (38 loc) · 1.71 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
---
permalink: /contact
---
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact | Vhou</title>
<link rel="stylesheet" href="./resources/styles/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Site embed -->
<meta name="theme-color" content="#554d66">
<meta property="og:site_name" content="Vhou">
<meta property="og:title" content="Contact">
<meta property="og:description" content="The contact page for Vhou's website.">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-T6K5L822WH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-T6K5L822WH');
</script>
<body>
<div id="header">
<div id="header-logo"><a href="./"><img id="logo" src="resources/img/header/logo.png"><img id="logo-onhover" src="resources/img/header/logo_hover.png"></a></div>
<ul id="nav">
<li class="navitem"><a class="navlink" href="projects">Projects</a></li>
<li class="navitem"><a class="navlink" href="blog">Blog</a></li>
<li class="navitem"><a id="this" class="navlink" href="contact.html">Contact</a></li>
</ul>
</div>
<div>
<h1 class="txtcenter generic-header">Contact Me</h1>
<p>The best way to contact me for whatever reason is through <a href="mailto:[email protected]">sending me an e-mail</a>. Otherwise, I have a <a href="https://vhouatroph.tumblr.com/">tumblr account</a> open for asks.</p>
</div>
</body>
</html>