-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsponsors.html
More file actions
90 lines (83 loc) · 2.87 KB
/
sponsors.html
File metadata and controls
90 lines (83 loc) · 2.87 KB
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
<!DOCTYPE html>
<html lang="en">
<title>DISK: Automated DIscovery of Scientific Knowledge</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/w3.css" />
<link rel="stylesheet" href="css/w3-theme-brown.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/custom.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
//load the parts of the page that are always the same across the portal
$("#footerContent").load("footer.html");
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-118863115-5"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-118863115-5");
</script>
<body>
<header class="w3-container w3-theme w3-padding w3-center" id="topMenu">
<div class="w3-container">
<div class="w3-container">
<h2>
<img src="images/LogoWithNameSmall.png" alt="DISK" /> DISK:
Automated DIscovery of Scientific Knowledge
</h2>
</div>
</div>
<div class="w3-center">
<div class="w3-bar w3-theme">
<a href="index.html" class="w3-bar-item w3-button w3-padding-8"
>Home</a
>
<a href="software.html" class="w3-bar-item w3-button w3-padding-8">Software</a>
<a href="portal.html" class="w3-bar-item w3-button w3-padding-8"
>Portals</a
>
<a href="about.html" class="w3-bar-item w3-button w3-padding-8"
>About</a
>
<a href="people.html" class="w3-bar-item w3-button w3-padding-8"
>People</a
>
<a href="papers.html" class="w3-bar-item w3-button w3-padding-8"
>Papers</a
>
<a
href="sponsors.html"
class="w3-bar-item w3-button w3-padding-8 selected"
>Sponsors</a
>
</div>
</div>
</header>
<div class="w3-content w3-justify">
<h3 class="w3-center">Sponsors</h3>
<p>
We gratefully acknowledge support from the Office of Naval Research
through award N00014-21-1-2437, the Defense Advanced Research Projects
Agency through the SIMPLEX program with award W911NF-15-1-0555, the
National Institutes of Health under awards 1U01CA196387 and
1R01GM117097, and the Canary Foundation.
</p>
<br />
</div>
<!-- Footer (defined in footer.html)-->
<footer
class="w3-container w3-theme-dark w3-padding-16"
id="footerContent"
></footer>
</body>
</html>