-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
117 lines (111 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | T0fum4n's Cybersecurity Blog</title>
<meta name="description" content="Get in touch with T0fum4n. Contact for inquiries, collaborations, or cybersecurity advice.">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
background-color: #0d1117;
color: #c9d1d9;
}
header {
background-color: #161b22;
padding: 20px;
text-align: center;
border-bottom: 1px solid #30363d;
}
header h1 {
margin: 0;
font-size: 2.5rem;
letter-spacing: 2px;
color: #58a6ff;
}
nav a {
color: #c9d1d9;
text-decoration: none;
margin: 0 15px;
font-weight: 700;
}
nav a:hover {
color: #58a6ff;
}
form {
max-width: 600px;
margin: 50px auto;
padding: 30px;
background-color: #161b22;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}
input, textarea {
width: calc(100% - 20px); /* Adjust for padding */
padding: 10px;
margin: 10px 0;
border: 1px solid #30363d;
border-radius: 5px;
background-color: #0d1117;
color: #c9d1d9;
box-sizing: border-box; /* Ensure padding stays inside width */
}
input::placeholder, textarea::placeholder {
color: #8b949e;
}
input[type="submit"] {
background-color: #58a6ff;
color: #0d1117;
border: none;
cursor: pointer;
padding: 12px;
font-weight: bold;
text-transform: uppercase;
margin-top: 15px;
}
input[type="submit"]:hover {
background-color: #4691d9;
}
footer {
background-color: #161b22;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
border-top: 1px solid #30363d;
}
footer p {
margin: 0;
color: #8b949e;
}
</style>
</head>
<body>
<header>
<h1>Contact Me</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="articles.html">Articles</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<form action="mailto:[email protected]" method="POST" enctype="text/plain">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="This contact form is annoying. If you can find the 'hidden' file. You may also earn the ability to 'send-message' directly to me..." rows="5" required></textarea>
<input type="submit" value="Send Message">
</form>
<footer>
<p>© 2024 T0fum4n. Reach me on
<a href="https://twitter.com/your-handle" target="_blank">Twitter</a> |
<a href="https://www.linkedin.com/in/tyler-hodges-a3464355/" target="_blank">LinkedIn</a>
</p>
</footer>
</body>
</html>