-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
47 lines (38 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Page</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
background-color: #f4f4f9;
}
h1 {
color: #333;
text-align: center;
}
p {
font-size: 1.1rem;
margin-bottom: 15px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #0056b3;
}
</style>
</head>
<body>
<h1>Contact Us</h1>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Instagram: <a class="nav-link" href="https://www.instagram.com/rheyaa_n/?hl=en" target="_blank">rheyaa_n</a></p>
<p>TikTok: <a class="nav-link" href="https://www.tiktok.com/@rheyaa.n?lang=en" target="_blank">rheyaa.n</a></p>
</body>
</html>