-
Notifications
You must be signed in to change notification settings - Fork 0
/
cellAtlas.html
67 lines (46 loc) · 1.66 KB
/
cellAtlas.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/lab.css">
<link rel="stylesheet" href="./css/markdown.css">
<link rel="icon" href="favicon.png" sizes="16x16">
<title>Lundberg Lab</title>
<script src="./js/jquery-3.3.1.min.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/showdown.min.js"></script>
<script src="./js/lab.js"></script>
<script>
$( document ).ready(function() {
convertContent();
$.get("menu.html", function(response) {
$("#menu").html(response);
$("#cellAtlas").addClass( "active" );
});
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<div id="menu"></div>
<header>
<div class="adapt-fixed-top">
<img class="middle-image" src="./images/cellAtlas.jpg">
</div>
</header>
<div class="container">
<h1 class="title">Cell Atlas</h1>
</div>
<!-- beginning of the content of this page -->
<div class="container main-paragraph mdcontent cellAtlas1"></div>
<div class="container">
<img class="middle-image image-center" src="./images/cellAtlasMontage.jpg">
</div>
<br>
<div class="container main-paragraph mdcontent cellAtlas2"></div>
<!-- end of the content of this page -->
<div id="footer"></div>
</body>
</html>