Skip to content

Commit 60db56a

Browse files
authored
Update index.html
1 parent ee6a337 commit 60db56a

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

index.html

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,31 @@
33
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
44
</head>
55
<body>
6-
<div class="w3-sidebar w3-bar-block" style="width:25%">
7-
<a class="w3-bar-item w3-button" href="index.html">Home</a>
8-
<a class="w3-bar-item w3-button" href="releases.html">Releases</a>
6+
<div class="w3-sidebar w3-bar-block w3-collapse w3-card" style="width:200px;" id="mySidebar">
7+
<button class="w3-bar-item w3-button w3-hide-large"
8+
onclick="w3_close()">Close &times;</button> <a class="w3-bar-item w3-button" href="index.html">Home</a>
9+
<a class="w3-bar-item w3-button" href="https://github.com/phpvirtualbox/phpvirtualbox/releases">Releases</a>
910
<a class="w3-bar-item w3-button" href="https://github.com/phpvirtualbox/phpvirtualbox/wiki">Wiki</a>
1011
<a class="w3-bar-item w3-button" href="https://github.com/phpvirtualbox/phpvirtualbox/issues">Issues</a>
1112
<a class="w3-bar-item w3-button" href="about.html">About</a>
1213
</div>
14+
<div class="w3-main" style="margin-left:200px">
15+
16+
<div class="w3-teal">
17+
<button class="w3-button w3-teal w3-xlarge" onclick="w3_open()">&#9776;</button>
18+
<div class="w3-container">
19+
<h1>phpVirtualBox</h1>
20+
</div>
21+
</div>
22+
</div>
23+
24+
<script>
25+
function w3_open() {
26+
document.getElementById("mySidebar").style.display = "block";
27+
}
28+
function w3_close() {
29+
document.getElementById("mySidebar").style.display = "none";
30+
}
31+
</script>
1332
</body>
1433
</html>

0 commit comments

Comments
 (0)