forked from vansh-codes/ChaosWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContactUs.html
33 lines (31 loc) · 1.07 KB
/
ContactUs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Chaos</title>
<link rel="stylesheet" href="css/contactus.css">
</head>
<body>
<div class="contact-form-container">
<h1>Contact Us</h1>
<form id="contactForm">
<div class="form-group">
<input type="text" id="description" placeholder="Name" required>
</div>
<div class="form-group">
<input type="text" id="phone" placeholder="Email" required>
</div>
<div class="form-group">
<input type="text" id="name" placeholder="Phone Number" required>
</div>
<div class="form-group">
<input type="text" id="email" placeholder="Description" required>
</div>
<button type="submit">Submit</button>
</form>
<div id="popup" class="popup"></div>
</div>
<script src="js/script.js"></script>
</body>
</html>