mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-05-14 07:42:15 +00:00
52 lines
2.9 KiB
HTML
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"> Insert boring stuff here </a> <!-- Introduction -->
|
|
<a href="about.html" id="navigation_button"> About this smelly </a> <!-- About -->
|
|
<a href="pictures.html" id="navigation_button"> Pictures! </a> <!-- Pictures! -->
|
|
<a href="more.html" id="navigation_button"> Even more! </a> <!-- More -->
|
|
<a href="social.html" id="navigation_button"> My social media! </a> <!-- Social Media -->
|
|
<a href="php_test.html" id="navigation_button"> PHP test </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"> I'm a top and I'm scared of bottoming... take me back <img src="images/up_arrow.png" class="small_icons"> </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>
|