-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
39 lines (37 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact - PyTik</title>
<link rel="stylesheet" href="assets/styles.css" />
</head>
<body>
<header>
<div class="container">
<h1>PyTik</h1>
<nav>
<a href="index.html">Home</a>
<a href="terms.html">Terms of Service</a>
<a href="privacy.html">Privacy Policy</a>
</nav>
</div>
</header>
<main>
<section class="container">
<h2>Contact Us</h2>
<p>
If you have any questions or concerns, please feel free to contact us
using the information below.
</p>
<p>Email: [email protected]</p>
<p>More contact information will be added here in the future.</p>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 PyTik. All rights reserved.</p>
</div>
</footer>
</body>
</html>