-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (68 loc) · 2.61 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
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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Landing page for the Brown Computer Science Department's exploreCSR programs">
<meta property="og:description" content="Landing page for the Brown Computer Science Department's exploreCSR programs.">
<meta property="og:title" content="Brown Computer Science | exploreCSR">
<title>Brown Computer Science | exploreCSR</title>
<!-- Bootstrap core CSS -->
<link href="systems/css/bootstrap.min.css" rel="stylesheet">
<meta name="theme-color" content="#7952b3">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="product.css" rel="stylesheet">
</head>
<body>
<!--<header class="site-header sticky-top py-1">
<nav class="container d-flex flex-column flex-md-row justify-content-between">
<a class="py-2 d-none d-md-inline-block" href="#">Socially-Responsible AI and Computational Creativity</a>
<a class="py-2 d-none d-md-inline-block" href="#">Diversity in Computer Systems</a>
</nav>
</header>-->
<main>
<div class="position-relative overflow-hidden p-3 p-md-5 m-md-3 text-center">
<div class="col-md-9 p-lg-9 mx-auto my-9">
<img src="systems/img/banner.png" class="img-fluid" />
<h1 class="display-4 fw-normal">exploreCSR</h1>
<!--<p class="lead fw-normal">This year, we are pleased to offer two exploreCSR programs!</p>-->
</div>
</div>
<div class="d-md-flex flex-md-equal w-100 my-md-3 ps-md-3">
<a href="ai/index.html">
<div class="bg-light me-md-3 pt-3 px-3 pt-md-5 px-md-5 text-center overflow-hidden">
<div class="my-3 py-3">
<h2 class="display-5">Socially-Responsible AI and Computational Creativity</h2>
</div>
</div>
</a>
<a href="systems/index.html">
<div class="bg-light me-md-3 pt-3 px-3 pt-md-5 px-md-5 text-center overflow-hidden">
<div class="my-3 p-3">
<h2 class="display-5">Diversity in Computer Systems</h2>
</div>
</div>
</a>
</div>
</main>
<!-- FOOTER -->
<footer class="container text-center">
<p style="color: darkgray;">Please select one of our programs above to continue.</p>
</footer>
<script src="systems/js/bootstrap.bundle.min.js"></script>
</body>
</html>