2022-07-23 13:29:59 +00:00
|
|
|
<?php include("heading.php") ?>
|
|
|
|
<h1>Home</h1>
|
|
|
|
<br>
|
|
|
|
<p>
|
|
|
|
|
|
|
|
Hello my name is Mike Nolan, and this is my <a href="//namecheap.com">Namecheap</a> self hosted website.
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
And yes if you were wondering, I do this for fun.
|
2022-12-16 01:34:56 +00:00
|
|
|
<h1>Wanna go somewhere else</h1>
|
|
|
|
<input type="text" id="textField">
|
|
|
|
<button onclick="goto()">Go Elsewhere</button>
|
|
|
|
<script>
|
|
|
|
const text = document.getElementById('textField');
|
|
|
|
function goto()
|
|
|
|
{
|
|
|
|
window.location.href=text.value;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-07-23 13:29:59 +00:00
|
|
|
</p>
|
2022-12-16 01:34:56 +00:00
|
|
|
<?php include("footer.php") ?>
|