-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontact.html
More file actions
44 lines (39 loc) · 1.6 KB
/
contact.html
File metadata and controls
44 lines (39 loc) · 1.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Get in Touch</title>
<link rel="stylesheet" href="contact.css">
</head>
<body>
<div class="contact-container">
<h1>Get in Touch</h1>
<p>Connect with fellow collectors today!</p>
<form class="contact-form" id="contactForm">
<div class="form-group">
<label for="name">Name *</label>
<input type="text" id="name" name="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<label for="email">Email Address *</label>
<input type="email" id="email" name="email" placeholder="email@website.com" required>
</div>
<div class="form-group">
<label for="phone">Phone Number *</label>
<input type="tel" id="phone" name="phone" placeholder="+91 9999999999" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" placeholder="Your message here..."></textarea>
</div>
<a href="index.html"><button type="submit">Submit</button></a>
</form>
<div class="contact-info">
<h2>Contact Information</h2>
<p><strong>Email:</strong> <a href="mailto:dogeshfun@gmail.com">vintagecollectibles@gmail.com</a></p>
<p><strong>Location:</strong> Pune, MH, INDIA</p>
</div>
</div>
</body>
</html>