-
Notifications
You must be signed in to change notification settings - Fork 0
/
starthouse.html
84 lines (73 loc) · 2.87 KB
/
starthouse.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>StartHouse - 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">StartHouse</h1>
<p class="text-center">
StartHouse is an initiative designed for student founders at MIT
to kickstart their entrepreneurial journey and go from
<span class="highlight-text text-purple"
>idea to launch in a four-week program</span
>. The program includes
<span class="highlight-text text-blue">workshops</span>,
<span class="highlight-text text-blue">networking sessions</span>,
and <span class="highlight-text text-blue">direct mentorship</span>
from seasoned entrepreneurs and investors, as well as a
<span class="highlight-text text-blue">trip to San Francisco</span>
where founders are able to meet with investors and share what they
are working on.
</p>
<p class="text-center">
If interested in learning more, reach out to
<a href="mailto:mec-exec@mit.edu">mec-exec@mit.edu</a>.
</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/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>