-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmission.html
177 lines (176 loc) · 5.59 KB
/
mission.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>NeuralWorks</title>
<meta
name="description"
content="NeuralWorks is a student ran community of aspiring entrepreneurs and creators. Meet new friends and make projects with some of the best creators in the world!"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/img/favicon.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/img/favicon.png"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=DM+Sans"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato"
/>
<link rel="stylesheet" href="assets/css/styles.min.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
<script
src="https://kit.fontawesome.com/0e7cbfa068.js"
crossorigin="anonymous"
></script>
</head>
<body>
<nav
class="navbar navbar-light navbar-expand-md sticky-top"
style="background: #f8faff; height: 15vh"
>
<div class="container">
<a class="navbar-brand" href="index.html"
><img
id="logo"
src="assets/img/default-monochrome-black.svg"
style="width: 15rem" /></a
><button
data-bs-toggle="collapse"
class="navbar-toggler"
data-bs-target="#navcol-2"
>
<span class="visually-hidden">Toggle navigation</span
><span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navcol-2">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a
class="nav-link"
href="https://github.com/NeuralWorksAI"
target="_blank"
>Projects</a
>
</li>
<li class="nav-item dropdown show">
<a
class="dropdown-toggle nav-link"
aria-expanded="true"
data-bs-toggle="dropdown"
href="#"
style="color: #888"
>About </a
>
<div class="dropdown-menu">
<a class="dropdown-item active" href="#">Mission</a
><a class="dropdown-item" href="team.html">Team</a
><a class="dropdown-item" href="faq.html">FAQ</a>
</div>
</li>
<li class="nav-item">
<a
class="nav-link"
href="https://discord.gg/UQBybs4X8H"
target="_blank"
>
<i class="fab fa-lg fa-discord d-inline-block align-middle"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="main">
<div
class="container-fluid py-5"
id="about-container"
style="text-align: center"
>
<h1 class="display-5 fw-bold">The Mission</h1>
<p
id="about-paragrah"
style="
max-width: 60%;
padding-top: 3rem;
padding-bottom: 5rem;
margin: auto;
"
>
The mission is simple, to create a better future for humanity by
advancing science and technology, especially in the domains of
biology, physics and computer science.
</p>
<h2>Short Term</h2>
<p
id="about-paragrah-1"
style="
max-width: 60%;
padding-top: 3rem;
padding-bottom: 5rem;
margin: auto;
"
>
The short term goals revolve around building a community. As this
community progresses we will create programs and events such as
hackathons, accelerators and special talks.
</p>
<h2>The Far Future</h2>
<p
id="about-paragrah-2"
style="
max-width: 60%;
padding-top: 3rem;
padding-bottom: 5rem;
margin: auto;
"
>
Hopefully in the future the NeuralWorks community will be thousands
large and continuing to connect like minded people all while creating
new projects and hosting fun events. Like mentioned in the mission,
the goal for NeuralWorks is to be at the edge of innovation.
</p>
<h4>
Want to help build NeuralWorks?<br />
<a
href="mailto:[email protected]"
style="text-decoration: none; color: #437085"
>Email me</a
>
</h4>
</div>
<footer class="footer-basic">
<ul class="list-inline">
<li class="list-inline-item"><a href="index.html">Home</a></li>
<li class="list-inline-item">
<a href="https://github.com/NeuralWorksAI">Projects</a>
</li>
<li class="list-inline-item"><a href="#">Mission</a></li>
<li class="list-inline-item"><a href="team.html">Team</a></li>
<li class="list-inline-item"><a href="faq.html">FAQ</a></li>
</ul>
<p class="copyright">NeuralWorks © 2021</p>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/script.min.js"></script>
</body>
</html>