-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartup-interface.html
97 lines (86 loc) · 3.39 KB
/
startup-interface.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Startup Interface - MEC, MIT Entrepreneurship Club</title>
<!-- Bootstrap CSS -->
<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) -->
<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="container my-5" data-aos="zoom-in">
<h1 class="text-center mb-4">Startup Interface</h1>
<h2 class="text-center mb-4">About</h2>
<p class="text-center">
Startup Interface is a new initiative by MEC designed to
<span class="highlight-text text-purple"
>connect students with promising startups</span
>
that are actively recruiting. We aim to serve as a bridge between
the wider entrepreneurial community and entrepreneurially-minded
students, providing them with
<span class="highlight-text text-blue">invaluable experience</span>,
<span class="highlight-text text-blue"
>networking opportunities</span
>, and an
<span class="highlight-text text-blue">opportunity to work</span>
with innovative, fast-growing companies.
</p>
<h2 class="text-center mt-5">Startups</h2>
<p class="text-center">
We accept startup sponsors on a rolling basis. If you’re a startup
and looking to recruit MIT students, reach out to us at
more information.
</p>
<h2 class="text-center mt-5">Students</h2>
<p class="text-center">
If you’re an interested MIT student, please fill out this
<a href="https://forms.gle/ep14UUkZbaPydu3D6" target="_blank"
>interest form</a
>
and we’ll get back to you.
</p>
</div>
</div>
<!-- Footer will be added here -->
<div id="footer"></div>
<!-- jQuery, Bootstrap JS and Popper.js -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/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>