-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
46 lines (41 loc) · 1.29 KB
/
Copy pathContact.html
File metadata and controls
46 lines (41 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Me</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Sidebar Navigation -->
<nav class="sidebar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="About me.html">About me</a></li>
<li><a href="Contact.html">Contact</a></li>
<li><a href="https://github.com/NotAViper" target="_blank">GitHub</a></li>
</ul>
</nav>
<header>
<div class="container">
<h1>Contact Me</h1>
<p>Feel free to reach out through my social media links!</p>
</div>
</header>
<section id="contact" class="contact">
<div class="container">
<h2>Ways to Contact Me</h2>
<ul>
<li>Twitter: <a href="https://twitter.com/NotADamnViper" target="_blank">Twitter Profile</a></li>
<li>Discord: notadamnviper</a></li>
</ul>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 NotAViper. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>