-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.html
More file actions
50 lines (35 loc) · 1.22 KB
/
Blog.html
File metadata and controls
50 lines (35 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" type="image/png" href="logo.png">
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html">Home</a>
<a href="Publications.html">Publications</a>
<a href="Talks.html">Talks</a>
<a href="SkypeaScientist.html">Outreach</a>
<a href="Blog.html">Blog</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i style="font-size:24px" class="fa"></i></a>
</div>
<h1 style="margin-top: 4em;;text-align:center;">Blog</h1>
<p style="text-align:center;">
<a href="NIH_cuts.html">Importance of public funding for basic science</a>
</p>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>