-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
83 lines (81 loc) · 2.55 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>102 Portfolio</title>
<link rel="icon" href="img/icon.webp">
<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=Inter&family=Days+One&family=Saira:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<header class="header-normal" onclick="toggleNav()">
<div class="logo-normal">
<span class="button-container">
<a href="index.html">
<img class="logo_102" draggable="false" src="img/102.svg">
</a>
<svg class="button-svg">
<rect class="button-line"></rect>
</svg>
</span>
</div>
<nav class="nav-normal">
<ul>
<li class="button-container">
<a href="about.html" draggable="false"><p>About</p></a>
<svg class="button-svg">
<rect class="button-line"></rect>
</svg>
</li>
<li class="button-container">
<a href="portfolio.html" draggable="false"><p>Portfolio</p></a>
<svg class="button-svg">
<rect class="button-line"></rect>
</svg>
</li>
<li class="button-container unselectable">
<p>Commissions</p>
<svg class="button-svg">
<rect class="button-line"></rect>
</svg>
</li>
<li class="button-container unselectable">
<p>Downloads</p>
<svg class="button-svg">
<rect class="button-line"></rect>
</svg>
</li>
<li class="button-container">
<a href="contact.html" draggable="false"><p>Contact</p></a>
<svg class="button-svg">
<rect class="button-line"></rect>
</svg>
</li>
</ul>
</nav>
</header>
<main class="body-wrapper flow">
<h1>Contact</h1>
<p>
For any business related affairs please use my email: <br>
<a href="mailto:[email protected]">[email protected]</a><br><br>
Other places to find me listed below.
</p>
<div class="full-width bg-light body-wrapper-last">
<ul>
<li>Twitch: <a href="https://www.twitch.tv/mm102">MM102</a></li>
<li>YouTube: <a href="https://www.youtube.com/channel/UCwn4gSXzdW2WWeIlL46WK_g">MM102</a></li>
<li>Twitter: <a href="https://twitter.com/MM102_">@MM102_</a></li>
<li>Tumblr: <a href="https://102-art.tumblr.com">102-art</a></li>
<li>Discord: 102</li>
</ul>
</div>
</main>
<footer>
</footer>
</body>
</html>