-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
38 lines (32 loc) · 933 Bytes
/
contact.html
File metadata and controls
38 lines (32 loc) · 933 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="cursor"></div>
<header class="fade-in">
<h1 class="logo">Contact</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="upload.html">Upload</a>
<a href="commissions.html">Commissions</a>
<a class="active" href="contact.html">Contact</a>
</nav>
</header>
<section class="section-box fade-in">
<h2>Get in Touch</h2>
<p>Email: <strong>harshil@example.com</strong></p>
<p>Instagram: <strong>@harshilll.lxv</strong></p>
<p>Mobile: <strong>+91 XXXXX XXXXX</strong></p>
</section>
<footer class="fade-in">
© 2025 Digital Art Gallery | Harshil
</footer>
<script src="script.js"></script>
</body>
</html>