-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·40 lines (35 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<title>VDW</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/functions.js"></script>
<style type="text/css">
body, html {
height: 100%;
}
</style>
</head>
<body>
<script>
// get the system platform using node.js
var os = require('os');
//require('nw.gui').Window.get().showDevTools();
// document.write('You are running on ', os.platform());
$(function(){
$("#Menu").load("menu.html");
});
</script>
<div id="Menu"></div>
<!-- Use any element to open the sidenav -->
<span onclick="openNav()" style="color: chartreuse;background-color: black;"><B> ☰ Menu </B> </span>
<!-- Add all page content inside this div if you want the side nav to push page content to the right (not used if you only want the sidenav to sit on top of the page -->
<!-- <div id="main"> -->
<div style="height:100%; width:100%; background-size:cover; padding:0px; background:url(./home.png) no-repeat white center center fixed"></div>
<!-- <img src="index.jpg" id="bg" alt=""> -->
<!-- </div> -->
</body>
</html>