-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
42 lines (38 loc) · 1.22 KB
/
contact.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
<!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>
<div id="main">
<div class="container" id="container"><br>
<h4>Contact information:</h4><br>
<p>Use this contact to report bugs or receive more information</p><br>
<a href="mailto:[email protected]">[email protected]</a>
<br>
</div>
</div>
</body>
</html>