19 lines
423 B
PHP
19 lines
423 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Halbear.Net</title>
|
|
<link rel="stylesheet" href="default.css">
|
|
</head>
|
|
<body>
|
|
<?php
|
|
$Page = "Software";
|
|
require_once("Hotbar.php");
|
|
?>
|
|
<script>
|
|
var Button = document.getElementById("SoftwareBtn");
|
|
Button.onclick = function(){document.location.href='index.php';};
|
|
Button.children[0].textContent = "Home";
|
|
</script>
|
|
</body>
|
|
</html>
|