-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
69 lines (55 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<!--
(*・ω・)ノ
I'm not the best at web development, if anything looks unusual then feel free to report it here: https://github.com/Erisa/erisa.uk/issues
-->
<head>
<meta charset="UTF-8">
<meta content="It's me, Nikhil!" property="og:title">
<meta content="Hiya! This website provides links to my stuff. I think that's about it, might be more." name="description">
<meta content="Hiya! This website provides links to my stuff. I think that's about it, might be more." property="og:description">
<meta content="Nikhil's Website" property="og:site_name">
<meta content='https://cdn.erisa.uk/avatars/commo.png' property='og:image'> <!--common n is removed by me due to link problem-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="details-polyfill.js"></script>
<link rel="preload" href="/fonts/inter-v8-latin-regular.woff2" as="font" type="font/woff2" crossorigin>
<link rel="stylesheet" href="style.css">
<title>
Nikhil - Contact
</title>
</head>
<body>
<main>
<h1 class="nikhil">
Contact Nikhil
</h1>
<p>If you don't include an email, I can't reply.</p>
<form action="https://formspree.io/f/xrgdbrpn" method="POST" class="contact__form">
<div class="form__name">
<input type="text" name="First Name" placeholder="First Name" required>
<input type="text" name="Last Name" placeholder="Last Name" required>
</div>
<input type="email" name="Email Address" placeholder="Your Email Address" required>
<textarea name="Message" rows="7" placeholder="Message" required></textarea>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</main>
<footer>
<p>
<hr>
<a href="index.html">Home</a> <span class="smallbar">|</span>
<a href="contact.html">Contact</a> <span class="smallbar">|</span>
<!-- <a href="https://erisa.dev" target="_blank">Blog</a> <span class="smallbar">|</span>
<a href="privacy.html">Privacy</a> <span class="smallbar">|</span>
<a href="domains.html"> Domain list</a> <span class="smallbar">|</span>
<a href="https://status.erisa.uk" rel="noopener" target="_blank">Status</a> -->
<a href="https://leetcode.com/niikhilpatel/" rel="">Leetcode</a> <span class="smallbar">|</span>
<a href="https://www.youtube.com/@CodeEnrich">YouTube</a> <span class="smallbar">|</span>
<a href="https://www.linkedin.com/in/niikhilpatel/" rel="">linkedin</a>
<a><span>|</span></a>
<!-- <a href="https://instagram.com/niikhilpatel" rel="">Instagram</a> -->
</p>
</footer>
</body>
</html>