WebsiteArchive/php_test.html
2021-07-21 01:53:18 +01:00

52 lines
2.9 KiB
HTML

<!DOCTYPE html>
<html lang="en"> <!-- This site is in english! -->
<head>
<!-- Did not know all websites needed this -->
<meta charset="utf-8"> <!-- Help show text correctly! -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Still don't know what this does -->
<meta name="description" content="Fluffy Bean's website"> <!-- Used to help search engins -->
<title>Fluffy's PHP Test</title> <!-- Title -->
<link rel="shortcut icon" type="image/jpg" href="images/fluffy1.png"/> <!-- Favicon -->
<link rel="stylesheet" href="style.css"> <!-- Le CSS code :3 -->
<!-- Googly fonts to make site pretty! :3 -->
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;400&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Fluffy's amazing website!
<img src="images/fluffy1.png" alt="Poorly drawn image of Fluffy Bean" class="header_image">
</h1>
</header>
<!-- The cool buttons at the top of the site! -->
<div id="navigation_row_top">
<a href="introduction.html" id="navigation_button">&nbsp;Insert&nbsp;boring&nbsp;stuff&nbsp;here&nbsp;</a> <!-- Introduction -->
<a href="about.html" id="navigation_button">&nbsp;About&nbsp;this&nbsp;smelly&nbsp;</a> <!-- About -->
<a href="pictures.html" id="navigation_button">&nbsp;Pictures!&nbsp;</a> <!-- Pictures! -->
<a href="more.html" id="navigation_button">&nbsp;Even&nbsp;more!&nbsp;</a> <!-- More -->
<a href="social.html" id="navigation_button">&nbsp;My&nbsp;social&nbsp;media!&nbsp;</a> <!-- Social Media -->
<a href="php_test.html" id="navigation_button">&nbsp;PHP&nbsp;test&nbsp;</a>
</div>
<div id="other_sections">
<h2>PHP stuff!</h2>
<?php include "menu.php";
echo "$text_a $text_b";
?>
<p>This still doesn't work. Come back later!</p>
</div>
<!-- The button to take you back to the top of the site -->
<footer>
<def>
<!-- Forgive me for the mess below -->
<a href="#" id="navigation_button">&nbsp;I'm&nbsp;a&nbsp;top&nbsp;and&nbsp;I'm&nbsp;scared&nbsp;of bottoming...&nbsp;take&nbsp;me&nbsp;back&nbsp;<img src="images/up_arrow.png" class="small_icons">&nbsp;</a>
</def>
<p id="footer_text">Site kept online by <span id="impotant_creature">Jeetix</span> • Made by <span id="fluffy_color">Fluffy Bean</span> • Version 21.07.2021.4</p>
</footer>
</body>
</html>