-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
145 lines (142 loc) · 5.37 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="The contact page here gives basic information to contact Ethan Butler."
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="css/style.min.css" />
<script src="/scripts/main.js"></script>
<title>Contact Ethan Butler</title>
</head>
<body>
<div class="container">
<header>
<nav role="navigation">
<button id="hamburger-button" onclick="hamburgerClick()">
<svg
xmlns="http://www.w3.org/2000/svg"
class="hamburger-menu"
width="44"
height="44"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="#fff"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<line x1="4" y1="6" x2="20" y2="6" />
<line x1="4" y1="12" x2="20" y2="12" />
<line x1="4" y1="18" x2="20" y2="18" />
</svg>
</button>
<!-- Nav Links -->
<a href="./"><h4 class="logotype inactive">EB</h4></a>
<!-- Mobile Only Nav Links -->
<h4 class="mobile-header inactive">About</h4>
<h4 class="mobile-header inactive">Projects</h4>
<h4 class="mobile-header">Contact</h4>
<!-- Desktop/Tablet Only Nav Links -->
<ul class="nav-links" id="nav-links">
<li><a href="./">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/projects.html">Projects</a></li>
<li id="default-contact-button">
<a href="/contact.html" class="cta underline-text">Contact</a>
</li>
</ul>
</nav>
</header>
<main class="contact">
<div class="contact-wrapper">
<div class="contact-section email">
<div class="contact-text">
<div class="contact-type">Email</div>
<div class="contact-info">
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
<a href="mailto:[email protected]" class="icon-link">
<svg
width="48"
height="48"
viewBox="0 0 48 48"
preserveAspectRatio="xMidYMid meet"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="icon email-icon"
>
<path
d="M38 10H10C7.79086 10 6 11.7909 6 14V34C6 36.2091 7.79086 38 10 38H38C40.2091 38 42 36.2091 42 34V14C42 11.7909 40.2091 10 38 10Z"
stroke="white"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M6 14L24 26L42 14"
stroke="white"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</div>
<div class="contact-section github">
<div class="contact-text">
<div class="contact-type">GitHub</div>
<div class="contact-info">
<a href="https://github.com/ethanbtlr">ethanbtlr</a>
</div>
</div>
<a href="https://github.com/ethanbtlr" class="icon-link">
<svg
width="48"
height="48"
viewBox="0 0 48 48"
preserveAspectRatio="xMidYMid meet"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="icon github-icon"
>
<path
d="M30 42V35C30 33 30.2 32.2 29 31C34.6 30.4 40 28.2 40 19C39.9976 16.61 39.0651 14.3146 37.4 12.6C38.1809 10.524 38.109 8.22328 37.2 6.20002C37.2 6.20002 35 5.60002 30.2 8.80002C26.1345 7.7412 21.8655 7.7412 17.8 8.80002C13 5.60002 10.8 6.20002 10.8 6.20002C9.89096 8.22328 9.81907 10.524 10.6 12.6C8.93491 14.3146 8.00244 16.61 8 19C8 28.2 13.4 30.4 19 31C17.8 32.2 17.8 33.4 18 35V42M18 38C9.4 40.8 9.4 33 6 32L18 38Z"
stroke="white"
stroke-width="3"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</div>
</div>
<img src="/images/email.svg" alt="Mail design" class="contact-svg" />
</main>
</div>
<footer>
<div class="footer-left">
<div class="footer-description">Website by Ethan Butler.</div>
<div class="footer-copyright">
© Copyright 2023. All rights reserved.
</div>
</div>
<div class="footer-right">
<div class="footer-sitemap">
<a href="/about.html">About</a>
<a href="/projects.html">Projects</a>
<a href="/contact.html">Contact</a>
</div>
<div class="footer-socials">
<a href="mailto:[email protected]">Email</a>
<a href="https://github.com/ethanbtlr">GitHub</a>
</div>
</div>
</footer>
</body>
</html>