-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
76 lines (70 loc) · 3.42 KB
/
contact.html
File metadata and controls
76 lines (70 loc) · 3.42 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | Will Hermann</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=JetBrains+Mono:wght@400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<canvas id="network-canvas"></canvas>
<div class="cursor-dot"></div>
<div class="cursor-outline"></div>
<header>
<div class="container nav-container">
<div class="logo">
<a href="index.html">Will Hermann</a>
</div>
<nav>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="section">
<div class="container">
<div style="max-width: 600px; margin: 0 auto;">
<h1>Contact</h1>
<p style="margin-bottom: 3rem;">
Open to research collaborations, consulting opportunities, and technical discourse.
</p>
<form class="minimal-form" id="contactForm">
<div>
<label for="name">Name</label>
<input type="text" id="name" required autocomplete="name">
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email" required autocomplete="email">
</div>
<div>
<label for="message">Message</label>
<textarea id="message" rows="4" required></textarea>
</div>
<button type="submit" class="btn btn-primary" style="width: 100%;">Send Message</button>
<p id="formStatus" style="margin-top: 1rem; font-family: var(--font-code); color: var(--accent-glow); display: none;"></p>
</form>
<div style="margin-top: 4rem; display: flex; justify-content: space-between; border-top: 1px solid var(--border-subtle); padding-top: 2rem;">
<div>
<span class="hero-label">Direct Link</span>
<a href="mailto:willghermann@protonmail.com" style="font-family: var(--font-display); font-size: 1.2rem;">willghermann@protonmail.com</a>
</div>
<div style="text-align: right;">
<span class="hero-label">Network</span>
<a href="https://github.com/coding-crying" target="_blank" style="margin-right: 1rem;">GitHub</a>
<a href="https://www.linkedin.com/in/william-hermann" target="_blank">LinkedIn</a>
</div>
</div>
</div>
</div>
</section>
</main>
<script src="js/script.js"></script>
</body>
</html>