-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
41 lines (39 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="contact.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="utils.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:[email protected]&display=swap" rel="stylesheet">
<title>Contact</title>
</head>
<body class="bgcol__secondary">
<header class="nav nav--top bgcol__primary">
<a class="Text__nav Text__nav--top col__primary txt__tny" href="index.html">Home</a>
<a class="Text__nav Text__nav--top col__primary txt__tny" href="about.html">About</a>
<a class="Text__nav Text__nav--top col__primary txt__tny" href="skills.html">Projects</a>
<a class="Text__nav Text__nav--top col__primary txt__tny" href="blog.html">Blog</a>
<a class="Text__nav Text__nav--top col__primary txt__tny" href="contact.html">Contact</a>
</header>
<article class="contact">
<h2 class="sectionHeader txt__lg txt__left col__primary typedLeft">
Contact Me
<span class="cursor">|</span>
</h2>
<p class="txt__med col__secondary">If you'd like to get in touch, click an option below:</p>
<p class="txt__lg col__secondary">[email protected]</p>
<a href="https://www.instagram.com/p155b4by.exe/" class="txt__sm col__accent txt_decor">Instagram</a>
</article>
<footer class="nav nav--bottom bgcol__primary">
<a class="Text__nav Text__nav--bottom col__accent txt__tny" href="index.html">Home</a>
<a class="Text__nav Text__nav--bottom col__accent txt__tny" href="about.html">About</a>
<a class="Text__nav Text__nav--bottom col__accent txt__tny" href="skills.html">Projects</a>
<a class="Text__nav Text__nav--bottom col__accent txt__tny" href="blog.html">Blog</a>
<a class="Text__nav Text__nav--bottom col__accent txt__tny" href="contact.html">Contact</a>
</footer>
</body>
</html>