-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
55 lines (55 loc) · 1.58 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
<html lang="en">
<head>
<title>Pilot Previews Landing Pages</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css"/>
<link rel="icon" type="image/png" href="./previews/img/favicon.png" />
<link rel="apple-touch-icon" href="./previews/img/apple-touch-icon.png" />
<link
rel="apple-touch-icon"
sizes="72x72"
href="./previews/img/apple-touch-icon-72x72.png"
/>
<link
rel="apple-touch-icon"
sizes="114x114"
href="./previews/img/apple-touch-icon-114x114.png"
/>
</head>
<body>
<header class="main-header">
<div class="main-logo">
<a
href="https://cns-iu.github.io/hra-cell-neighborhood-analysis/"
title="Link to VCCF Preview Homepage"
><img src="./previews/img/logo-hubmap.svg" alt="HuBMAP logo" class="logo"
/></a>
</div>
</header>
<div class="main">
<h1>Cell Neighborhood Analysis</h1>
<ul class="list-style-none">
<li>
<a href="./previews/pilots/pilot1.html" title="Cell Neighborhood Visualization"
>Cell Neighborhood Visualization for Intestine Data</a
>
</li>
</ul>
</div>
<footer class="main-footer">
<p>
<small
>©
<script>
new Date().getFullYear() > 2010 &&
document.write(new Date().getFullYear());
</script>
All Rights Reserved.</small
>
</p>
</footer>
</body>
</html>