-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
95 lines (91 loc) · 3.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Retro Games Online</title>
<link rel="stylesheet" href="contact.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="navbar">
<div class="container nav-container">
<input class="checkbox" type="checkbox" name="" id="" />
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
<div class="logo">
<h1>Retro Games Online</h1>
</div>
<div class="menu-items">
<li><a href="index.html">Home</a></li>
<li><a href="tetris.html">Tetris</a></li>
<li><a href="snake.html">Snake</a></li>
<li><a href="pingpong.html">Ping Pong</a></li>
<li><a href="contact.html">Contact</a></li>
</div>
</div>
</div>
</nav>
<main>
<article>
<br><br><br>
<h1 style="text-align: center;">Contact Us</h1>
<br>
<h2 style="text-align: center;">We'd love to hear from you!</h2>
<div class="contact-form-container">
<form action="submit_contact_form.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit">Submit</button>
</form>
</div>
</article>
</main>
<footer>
<div class="footer-container">
<div class="footer-section">
<h2>About Us</h2>
<p>We bring the best of retro games online, allowing you to relive the classic arcade experience from the comfort of your home.</p>
</div>
<div class="footer-section">
<h2>Quick Links</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="tetris.html">Tetris</a></li>
<li><a href="snake.html">Snake</a></li>
<li><a href="pingpong.html">Ping Pong</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h2>Follow Us</h2>
<div class="social-links">
<a href="#"><img src="images/instagram.png" alt="Instagram"></a>
<a href="#"><img src="images/telegram.png" alt="Telegram"></a>
<a href="#"><img src="images/linkedin.png" alt="Linkedin"></a>
<a href="#"><img src="images/github.png" alt="Github"></a>
</div>
</div>
<div class="footer-section">
<h2>Contact Us</h2>
<p>Email: [email protected]</p>
<p>Phone: +1 (555) 123-4567</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Retro Games Online. All rights reserved.</p>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>