Files
HalbearNetDesktopSite/Contact.php
2026-01-26 08:49:11 +00:00

19 lines
421 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 = "Contact";
require_once("Hotbar.php");
?>
<script>
var Button = document.getElementById("ContactBtn");
Button.onclick = function(){document.location.href='index.php';};
Button.children[0].textContent = "Home";
</script>
</body>
</html>