-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcontact.html
More file actions
144 lines (134 loc) · 5.4 KB
/
Copy pathcontact.html
File metadata and controls
144 lines (134 loc) · 5.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | FOSS Club</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/animations.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="./index.html" class="logo">
<img src="./assets/Images/logo.svg" alt="FOSS Logo">
<span>FOSS</span>
</a>
<button id="open-menu" onclick="opensidebar()"><img src="assets/Images/menu_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.png" height="50px" width="50px" alt=""></button>
<ul class="nav-links">
<li><button id="close-menu" onclick="closesidebar()"><img src="assets/Images/close_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.png" height="50px" width="50px" alt=""></button></li>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./team.html">Team</a></li>
<li><a href="./contact.html" class="active">Contact</a></li>
</ul>
</nav>
</header>
<div id="overlay" onclick="closesidebar()" aria-hidden="true"></div>
<section class="page-banner parallax">
<div class="page-banner-content fade-in-up">
<h1>Get In Touch</h1>
</div>
</section>
<section class="page-content slide-in-right">
<div class="contact-container">
<div class="contact-info">
<h2>Connect With Us</h2>
<div class="social-links-box">
<a href="https://chat.whatsapp.com/LpbeAKZVYfQCNFRmrcKWCQ" target="_blank" class="social-link">
<i class="fab fa-whatsapp"></i>
<span>Community</span>
</a>
<a href="https://www.linkedin.com/company/foss-club-sitp" target="_blank" class="social-link">
<i class="fab fa-linkedin"></i>
<span>LinkedIn</span>
</a>
<a href="https://www.instagram.com/fossclubsit/" target="_blank" class="social-link">
<i class="fab fa-instagram"></i>
<span>Instagram</span>
</a>
<a href="https://github.com/FOSSClubSIT" target="_blank" class="social-link">
<i class="fab fa-github"></i>
<span>GitHub</span>
</a>
</div>
<div class="contact-details">
<p><i class="fas fa-envelope"></i> Email: fossclub@sitpune.edu.in</p>
<p><i class="fas fa-map-marker-alt"></i> Address: Symbiosis Institute of Technology, Pune</p>
</div>
</div>
<form class="contact-form">
<h2>Send us a Message</h2>
<div class="form-group">
<input type="text" name="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="email" name="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<textarea name="message" rows="5" placeholder="Your Message" required></textarea>
</div>
<button type="submit" class="cta-button">Send Message</button>
</form>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="logo-section" style="justify-content: flex-start; margin-left: 10px;">
<img src="assets\Images\logo_full.png" alt="FOSS Club Logo" class="club-logo" style="width: 160px; height: auto;">
</div>
<div class="secondary-menu" style="text-align: center;">
<a href="./index.html" class="menu-link">Home</a>
<a href="./about.html" class="menu-link">About</a>
<a href="./projects.html" class="menu-link">Projects</a>
<a href="./events.html" class="menu-link">Events</a>
<a href="./team.html" class="menu-link">Team</a>
<a href="./contact.html" class="menu-link">Contact</a>
</div>
<div class="social-links" style="display: flex; justify-content: flex-end; gap: 10px;">
<a href="https://www.linkedin.com/company/foss-club-sitp/posts/?feedView=all" class="social-icon" style="width: 60px; height: 60px;"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/FOSSClubSIT" class="social-icon" style="width: 60px; height: 60px;"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/fossclubsit/" class="social-icon" style="width: 60px; height: 60px;"><i class="fab fa-instagram"></i></a>
<a href="https://www.youtube.com/@FOSSClubSIT" class="social-icon" style="width: 60px; height: 60px;"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-links">
</div>
</footer>
<script src="js/script.js"></script>
<script src="./js/navigation.js"></script>
</body>
<style>
.social-links-box {
display: flex;
flex-direction: column;
gap: 15px;
}
.social-links-box a {
background: rgba(45, 45, 45, 0.1);
color: #fff;
width: 200px;
height: 50px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
transition: all 0.3s ease;
}
.social-links-box a:hover {
background: var(--primary-green);
color: #000;
transform: translateY(-5px);
}
.social-links-box a:hover i{
color:#000;
transition: color 0.3s ease;
}
</style>
</html>