-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (41 loc) · 2.28 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap-5.0.2-dist/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="#">Globus Labs Summer Students</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="students/student-list.html">Students</a>
</li>
</ul>
</div>
</div>
</nav>
<section>
<div class="p-5 mb-4 bg-light rounded-3">
<div class="container-fluid py-5">
<h1 class="display-5 fw-bold">Globus Labs Summer Students 2022</h1>
<p class="col-md-8 fs-4">We are so excited about our summer 2022 students! They are extremely talented and will be contributing to many of our projects over the summer.</p>
<a href="students/student-list.html"><button class="btn btn-primary btn-lg" type="button">See all students</button></a>
</div>
</div>
</section>
<section class="mx-auto col-10 col-md-8">
<p class="text-center lead fw-normal">We have a variety of projects that include work with Data Infrastructure, Machine Learning, Software Development, and more.</p>
<p class="text-center lead fw-normal">You can learn more about our projects <a href="https://labs.globus.org/projects.html" target="blank">here.</a></p>
</section>
<script src="bootstrap-5.0.2-dist/bootstrap.min.js"></script>
</body>
</html>