-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
83 lines (73 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Us - MEC, MIT Entrepreneurship Club</title>
<!-- Bootstrap CSS (For styling and navbar) -->
<link
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
<!-- AOS CSS (For animations) -->
<link
href="https://cdn.rawgit.com/michalsnik/aos/2.1.1/dist/aos.css"
rel="stylesheet"
/>
<!-- Font Awesome (For icons: Email, LinkedIn, Instagram) -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
rel="stylesheet"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,700"
rel="stylesheet"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/styles.css" />
<link href="css/page.min.css" rel="stylesheet" />
</head>
<body>
<div id="page-container">
<div id="content-wrap">
<div id="navbar-container"></div>
<div class="contact-container" data-aos="zoom-in">
<h2>Contact Us</h2>
<p>We'd love to hear from you! Reach out to us via:</p>
<div class="contact-icons">
<a href="mailto:mec-exec@mit.edu">
<i class="fas fa-envelope"></i>
<span>Email</span>
</a>
<a
href="https://www.linkedin.com/company/mit-entrepreneurship-club-mec/"
target="_blank"
>
<i class="fab fa-linkedin"></i>
<span>LinkedIn</span>
</a>
<a href="https://www.instagram.com/mec_mit/" target="_blank">
<i class="fab fa-instagram"></i>
<span>Instagram</span>
</a>
</div>
</div>
</div>
<!-- Footer will be added here -->
<div id="footer"></div>
<!-- jQuery, Bootstrap JS and Popper.js (For the navbar) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.3/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- AOS JS (For animations) -->
<script src="https://cdn.rawgit.com/michalsnik/aos/2.1.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
<!-- Custom JS -->
<script src="js/script.js"></script>
<script src="js/loadNavbar.js"></script>
</div>
</body>
</html>