-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.7 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 1.7 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
<html>
<head>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
<div class="w3-sidebar w3-bar-block w3-card w3-animate-left" style="display:none" id="mySidebar">
<button class="w3-bar-item w3-button w3-large"
onclick="w3_close()">Close ×</button>
<a class="w3-bar-item w3-button" href="index.html">Home</a>
<a class="w3-bar-item w3-button" href="https://github.com/phpvirtualbox/phpvirtualbox/releases">Releases</a>
<a class="w3-bar-item w3-button" href="https://github.com/phpvirtualbox/phpvirtualbox/wiki">Wiki</a>
<a class="w3-bar-item w3-button" href="https://github.com/phpvirtualbox/phpvirtualbox/issues">Issues</a>
<a class="w3-bar-item w3-button" href="about.html">About</a>
</div>
<div class="w3-main" id="main">
<div class="w3-teal">
<button id="openNav" class="w3-button w3-teal w3-xlarge" onclick="w3_open()">☰</button>
<div class="w3-container">
<h1>phpVirtualBox</h1>
</div>
</div>
<p>phpVirtualBox is a web application approximation of the VirtualBox interface written in PHP.</p>
<div class="w3-container">
<h1>License</h1>
</div>
<p>phpVirtualBox is released under a GPLv3 license.</p>
</div>
<script>
function w3_open() {
document.getElementById("main").style.marginLeft = "25%";
document.getElementById("mySidebar").style.width = "25%";
document.getElementById("mySidebar").style.display = "block";
document.getElementById("openNav").style.display = 'none';
}
function w3_close() {
document.getElementById("main").style.marginLeft = "0%";
document.getElementById("mySidebar").style.display = "none";
document.getElementById("openNav").style.display = "inline-block";
}
</script>
</body>
</html>