-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
151 lines (146 loc) · 7.02 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UDGAM'25 - Contact Us</title>
<link href="https://testfiles-udgam-six.vercel.app/img/UDGAM%20(1).png" rel="shortcut icon" type="image/x-icon" />
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" />
<link rel="stylesheet" href="/styles/contact.css">
</head>
<body>
<!-- Navigation -->
<nav class="nav-bar">
<div class="nav-container">
<a href="index.html" class="brand">
<img src="https://testfiles-udgam-six.vercel.app/img/UDGAM%20(1).png" alt="UDGAM Logo" class="nav-logo">
</a>
<div class="nav-links">
<a href="index.html" class="nav-link">Home</a>
<a href="events.html" class="nav-link">Events</a>
<a href="team.html" class="nav-link">Team</a>
<a href="about.html" class="nav-link">About</a>
<a href="contact.html" class="nav-link active">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-section">
<div class="hero-bg"></div>
<div class="hero-overlay"></div>
<div class="hero-content">
<h1 class="hero-title">Get in Touch</h1>
<p class="hero-subtitle">Have questions? We'd love to hear from you. Send us a message and we'll respond as soon as possible.</p>
</div>
</section>
<!-- Contact Section -->
<section class="contact-section">
<div class="container">
<div class="contact-grid">
<div class="contact-info">
<div class="contact-card">
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="contact-text">
<h3>Location</h3>
<p>SRM University-AP<br>Neerukonda, Mangalagiri<br>Andhra Pradesh 522502</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-phone"></i>
</div>
<div class="contact-text">
<h3>Phone</h3>
<p>+91 1234567890</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="contact-text">
<h3>Email</h3>
<p>[email protected]</p>
</div>
</div>
</div>
<div class="contact-card">
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-clock"></i>
</div>
<div class="contact-text">
<h3>Office Hours</h3>
<p>Monday - Friday: 9:00 AM - 6:00 PM<br>Saturday: 9:00 AM - 1:00 PM</p>
</div>
</div>
</div>
</div>
<div class="contact-form">
<form id="contactForm">
<div class="form-group">
<label class="form-label">Name</label>
<input type="text" class="form-control" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label class="form-label">Email</label>
<input type="email" class="form-control" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label class="form-label">Subject</label>
<input type="text" class="form-control" placeholder="Enter subject" required>
</div>
<div class="form-group">
<label class="form-label">Message</label>
<textarea class="form-control" placeholder="Enter your message" required></textarea>
</div>
<button type="submit" class="submit-btn">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Map Section -->
<section class="map-section">
<div class="container">
<div class="map-container">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3826.2096254364146!2d80.50574867538383!3d16.464919884273428!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a35f253b87d44b3%3A0x591c2967f32abc19!2sSRM%20University%20AP!5e0!3m2!1sen!2sin!4v1737653702473!5m2!1sen!2sin" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>Contact Us</h3>
<p><i class="fas fa-envelope"></i> [email protected]</p>
<p><i class="fas fa-phone"></i> +91 1234567890</p>
<p><i class="fas fa-map-marker-alt"></i> SRM University-AP, Neerukonda, Mangalagiri</p>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<div class="social-links">
<a href="https://www.instagram.com/srmuap.udgam/" class="social-link"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-link"><i class="fab fa-facebook"></i></a>
<a href="#" class="social-link"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-link"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 UDGAM. All rights reserved.</p>
</div>
</footer>
<script>
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
</script>
</body>
</html>