<a href="http://www.anybrowser.org/campaign/"><img src="./images/gifs/badges/anybrowser.gif" alt="Viewable With Any Browser" /></a>
</div>
</footer>
-
+<script src="/scripts/play_audio.js"></script>
<script data-goatcounter="https://bochard.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
\ No newline at end of file
-<audio id="bg-music" src="/audios/background/rejectedworld.mp3" controls loop></audio>
-<header>
+<input type="image" id="play-bgm-btn" src="/images/gifs/bevelwood.gif"><span id="play-bgm-txt">click to play music! :)</span>
+<audio id="bg-music" src="/audios/background/rejectedworld.mp3" loop></audio>
+<header style="text-align: center;">
<img src="/images/gifs/doraemon.gif" alt="doraemon hello gif" width="100">
<img src="/images/gifs/welcomemovetree.gif" alt="tree with welcome text gif" width="300">
- <h1>welcome to my website!</h1>
+ <p style="font-size: 40px; font-weight: bold;">welcome to my website!</p>
</header>
\ No newline at end of file
-<nav class="headernav">
+<nav style="text-align: center;">
<a href="/index.php">
<img src="/images/navigation/homepage.png">
</a>
+ <a href="/info.php">
+ <img src="/images/navigation/info.png">
+ </a>
<a href="/links.php">
<img src="/images/navigation/links.png">
</a>
<meta property="og:description" content="I code on paper and create websites out of it.">\r
<meta property="og:image" content="/images/">\r
\r
- <link rel="stylesheet" href="/styles/index.css">\r
+ <link rel="stylesheet" href="/styles/root.css">\r
+<style>\r
+ h1 {\r
+ font-size: 40px;\r
+ }\r
+ p {\r
+ font-size: 20px;\r
+ }\r
+ section {\r
+ margin-top: 40px;\r
+ }\r
+ h2 {\r
+ font-size: 24px;\r
+ margin-bottom: 10px;\r
+ }\r
+ table {\r
+ width: 100%;\r
+ margin: 0 auto;\r
+ }\r
+ table, th, td {\r
+ border: 1px solid #000000;\r
+ }\r
+ th, td {\r
+ font-size: 18px;\r
+ padding: 6px;\r
+ }\r
+</style>\r
</head>\r
<body>\r
<?php include './includes/header.php';?>\r
\r
<main>\r
- <img src="/images/gifs/homepageburning.gif" alt="under construction text gif" width="300">\r
-\r
+ <img src="/images/gifs/titles/homepageburning.gif" class="page-title">\r
<?php include './includes/nav.php';?>\r
- \r
<section style="text-align: center;">\r
+ <h1>You found my net home!</h1>\r
<p>Hi! welcome to my net home.</p>\r
<p>i have nothing to say yet. writing intro is hard. sorry! 😢ðŸ˜</p>\r
</section>\r
</main>\r
\r
<?php include './includes/footer.php';?>\r
- \r
</body>\r
</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="description" content="useful links.">
+ <meta name="robots" content="index, follow">
+ <title>useful resources</title>
+ <link rel="icon" type="image/ico" href="/images/">
+
+ <link rel="stylesheet" href="/styles/root.css">
+</head>
+<body>
+ <?php include './includes/header.php';?>
+
+ <main>
+ <img src="/images/gifs/titles/infopageburning.gif" class="page-title">
+ <?php include './includes/nav.php';?>
+ <section style="text-align: center;">
+ <h1>About me!</h1>
+ <p>Sorry, nothing to see here yet :<</p>
+ </section>
+ </main>
+
+ <?php include './includes/footer.php';?>
+</body>
+</html>
\ No newline at end of file
<title>useful resources</title>
<link rel="icon" type="image/ico" href="/images/">
- <link rel="stylesheet" href="/styles/index.css">
+ <link rel="stylesheet" href="/styles/root.css">
</head>
<body>
+ <?php include './includes/header.php';?>
+ <main>
+ <img src="/images/gifs/titles/linkspageburning.gif" class="page-title">
+ <?php include './includes/nav.php';?>
+ <section style="text-align: center;">
+ <h1>Some useful links.</h1>
+ <p>Sorry, nothing to see here yet :<</p>
+ </section>
+ </main>
+
+ <?php include './includes/footer.php';?>
</body>
</html>
\ No newline at end of file
--- /dev/null
+function playBGM(){
+ const audio = document.getElementById("bg-music");
+ if(audio.paused){
+ audio.play()
+ updateText("playing");
+ }
+ else {
+ audio.pause();
+ updateText("paused");
+ }
+}
+
+function updateText(status){
+ const playBGMText = document.getElementById("play-bgm-txt");
+ switch(status){
+ case "playing":
+ playBGMText.textContent = "Yay! music is now playing :0";
+ break;
+ case "paused":
+ playBGMText.textContent = "WHY YOU STOPPED THE MUSIC!! :'(";
+ break;
+ }
+}
+
+document.getElementById("play-bgm-btn").addEventListener("click", function(){
+ playBGM();
+})
\ No newline at end of file
<meta name="robots" content="index, follow">
<title>sitemap</title>
<link rel="icon" type="image/ico" href="/images/">
+
+ <link rel="stylesheet" href="/styles/root.css">
</head>
<body>
+ <?php include './includes/header.php';?>
+
+ <main>
+ <img src="/images/gifs/titles/sitemappageburning.gif" class="page-title">
+ <?php include './includes/nav.php';?>
+ <section style="text-align: center;">
+ <h1>All paths to my site.</h1>
+ <p>Sorry, nothing to see here yet :<</p>
+ </section>
+ </main>
+ <?php include './includes/footer.php';?>
</body>
</html>
\ No newline at end of file
+++ /dev/null
-*, ::before, ::after {
- box-sizing: border-box;
-}
-html {
- background-image: url(/images/backgrounds/backgroundclouds.gif);
- background-position: center;
-}
-body {
- font-family: serif;
- margin: 0 auto;
- width: 95%;
- max-width: 1000px;
- height: 100%;
-}
-main {
- background-image: url(/images/backgrounds/bg-canvas.gif);
- background-repeat: repeat;
- background-position: center;
- border: 7px outset #000000;
- border-radius: 8px;
- padding: 20px;
-}
-h1 {
- font-size: 40px;
-}
-p {
- font-size: 20px;
-}
-header {
- text-align: center;
-}
-.headernav {
- margin: auto;
-}
-.headernav > ul {
- text-align: center;
-}
-.headernav li {
- font-size: 18px;
- list-style: none;
- padding: 2px 4px;
- width: fit-content;
- background-color: #dbdbdb;
- border: 7px outset #000000;
- border-radius: 8px;
- text-shadow: 1px 1px #000000;
- cursor: pointer;
- display: inline-block;
-}
-section {
- margin-top: 40px;
-}
-h2 {
- font-size: 24px;
- margin-bottom: 10px;
-}
-table {
- width: 100%;
- margin: 0 auto;
-}
-table, th, td {
- border: 1px solid #000000;
-}
-th, td {
- font-size: 18px;
- padding: 6px;
-}
-footer {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 20px;
- margin-bottom: 200px;
-}
\ No newline at end of file
--- /dev/null
+*, ::before, ::after {
+ box-sizing: border-box;
+}
+html {
+ background-image: url(/images/backgrounds/backgroundclouds.gif);
+ background-position: center;
+}
+body {
+ font-family: serif;
+ margin: 0 auto;
+ width: 95%;
+ max-width: 1000px;
+ height: 100%;
+}
+main {
+ background-image: url(/images/backgrounds/bg-canvas.gif);
+ background-repeat: repeat;
+ background-position: center;
+ border: 7px outset #000000;
+ border-radius: 8px;
+ padding: 20px;
+}
+footer {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-top: 20px;
+ margin-bottom: 200px;
+}
+a {
+ text-decoration: none;
+}
+
+
+.page-title {
+ width: 100%;
+}
\ No newline at end of file