Files
homepage/index.html

28 lines
886 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Homelab Brisbane</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
crossorigin="anonymous" />
</head>
<body>
<div class="container mt-5">
<h1 class="text-center">Hello, Bootstrap & jQuery!</h1>
<p class="text-center">This is a simple one-page HTML template.</p>
</div>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
crossorigin="anonymous">
</script>
<script>
$(document).ready(function () {
});
</script>
</body>
</html>