-
Notifications
You must be signed in to change notification settings - Fork 0
/
acknowledgements.html
100 lines (85 loc) · 2.88 KB
/
acknowledgements.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
<!DOCTYPE html>
<html lang=en>
<title>NeuroDISK</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-red.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.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>
<head>
<style>
h1 {
color:goldenrod
}
.w3-container {
position: relative;
}
.topleft {
float: left;
}
.w3-bar .w3-button {
padding: 16px;
}
.footer {
left: 0;
bottom: 0;
width: 100%;
background-color:white;
color:black;
text-align: center;
}
</style>
</head>
<body>
<header class="w3-container w3-theme-d5 w3-padding" id="topMenu">
<div class="w3-container">
<div class=" w3-container">
<div class="topleft">
<h1><img src="images/Logo.png" alt="NeuroDISK" width=50px height=50px/>
NeuroDISK
</h1>
</div>
</div>
</div>
<div class="w3-right">
<div class="w3-bar w3-theme-d5">
<a href="index.html" class="w3-bar-item w3-button w3-padding-8">About</a>
<a href="research.html" class="w3-bar-item w3-button w3-padding-8">Research</a>
<a href="people.html" class="w3-bar-item w3-button w3-padding-8">People</a>
<a href="publications.html" class="w3-bar-item w3-button w3-padding-8">Publications</a>
<a href="ontologies.html" class="w3-bar-item w3-button w3-padding-8">Ontologies</a>
<a href="portal.html" class="w3-bar-item w3-button w3-padding-8">Portal</a>
<a href="acknowledgements.html" class="w3-bar-item w3-button w3-padding-8 selected">Acknowledgements</a>
</div>
</div>
</header>
<br />
<div class="w3-center">
<h2><b>Acknowledgements</b></h2>
</div>
<br />
<div class="w3-content w3-justify">
<p>We gratefully acknowledge support from the National Institutes of Health (NIH) through award number 1R01AG059874-01 and from the Office of Naval Research (ONR) through award number N00014-21-1-2437.</p>
</div>
<div class="footer">
<hr />
<p>NeuroDISK 2021 Copyright ©| University of Southern California</p>
</div>
</body>
</html>