-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
54 lines (51 loc) · 2.08 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
<!DOCTYPE html>
<html>
<head lang="en">
<title>Boop</title>
<link rel="icon" type="image/png" href="images/logo.png">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="script.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Boop" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://boop.website" />
<meta property="og:image" content="https://boop.website/images/logo.png" />
<meta property="og:description" content="Contact me here bbg" />
<meta property="og:site_name" content="Boop" />
<meta property="og:locale" content="en" />
<meta property="og:locale:alternate" content="en_NZ" />
<meta property="og:locale:alternate" content="en_US" />
<meta property="og:locale:alternate" content="en_GB" />
<meta property="og:locale:alternate" content="en_AU" />
<meta name="description" content="Personal website for the elustrious Boop"/>
</head>
<body>
<!-- Header Section -->
<header>
<nav>
<h1><a href="index.html">Boop</a></h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="menu-icon">☰</div>
</nav>
</header>
<!-- Main Content Section -->
<main>
<div style="height: 20vh;"></div>
<section>
<h1 class="i-am">Contacts</h1>
<p class="i-am">
Email: <a href="mailto:[email protected]">[email protected]</a>
<br><br>
Discord: .boop.
<br><br>
Yep. That's it. I don't use social media.<br>
Well, aside from Discord.
</p>
</section>
</main>
</body>
</html>