remove related project from index.php, create new page, add to nav

This commit is contained in:
emma 2024-12-13 16:57:13 -05:00
parent da7fa5c78d
commit c2c278bbcd
4 changed files with 56 additions and 23 deletions

View File

@ -14,6 +14,7 @@
<li><a href="../site/about.php" target="_blank">about</a></li> <li><a href="../site/about.php" target="_blank">about</a></li>
<li><a href="../site/why.php" target="_blank">why</a></li> <li><a href="../site/why.php" target="_blank">why</a></li>
<li><a href="../site/who.php" target="_blank">who</a></li> <li><a href="../site/who.php" target="_blank">who</a></li>
<li><a href="../site/other.php" target="_blank">other emma things</a></li>
<li><a href="../site/contact.php" target="_blank">contact</a></li> <li><a href="../site/contact.php" target="_blank">contact</a></li>
</ul> </ul>
</nav> </nav>

View File

@ -41,29 +41,6 @@
12-05-2024 - i've begun using picrew to explore my identity and sense of self. while creating this site i added a picrew page with a few images of how i see myself. with time i will certainly add more 12-05-2024 - i've begun using picrew to explore my identity and sense of self. while creating this site i added a picrew page with a few images of how i see myself. with time i will certainly add more
</li> </li>
</ul> </ul>
<h2>other things of mine you might like</h2>
<h3>cat-related website projects</h3>
<ul>
<li>
<a href="https://thiscat.rocks" target="_blank">baxter's homepage</a>
</li>
<li>
<a href="https://alternate.thiscat.rocks" target="_blank">a photo gallery of baxter with a retro twist</a>
</li>
<li>
<a href="https://onecatper.day" target="_blank">an image of a cat in your web browser or via rss</a>
</li>
</ul>
<p>
to say my love of cats drives a passion to create is an understatement <3
</p>
<h3>a blog about my life in general</h3>
<ul>
<li><a href="https://blog.hypertext.city" target="_blank">walk with me for a moment</a></li>
</ul>
</section> </section>
</main> </main>
<?php include "./includes/footer.php" ?> <?php include "./includes/footer.php" ?>

43
site/other.php Normal file
View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>other emma things</title>
<link rel="stylesheet" href="../style/style.css">
</head>
<body>
<?php include "../includes/header.php" ?>
<?php include "../includes/nav.php" ?>
<main>
<section
<h1>other things of mine you might like</h1>
<h3>cat-related website projects</h3>
<ul>
<li>
<a href="https://thiscat.rocks" target="_blank">baxter's homepage</a>
</li>
<li>
<a href="https://alternate.thiscat.rocks" target="_blank">a photo gallery of baxter with a retro twist</a>
</li>
<li>
<a href="https://onecatper.day" target="_blank">an image of a cat in your web browser or via rss</a>
</li>
</ul>
<p>
to say my love of cats drives a passion to create is an understatement <3
</p>
<h3>a blog about my life in general</h3>
<ul>
<li><a href="https://blog.hypertext.city" target="_blank">walk with me for a moment</a></li>
</ul>
<p class="teaser-text">you can certainly expect more here with time &lt;3</p>
</section>
</main>
</body>
</html>

View File

@ -104,6 +104,18 @@ a:hover {
text-decoration: underline; text-decoration: underline;
} }
ul {
list-style-type: none;
}
nav ul li {
padding-bottom: 0.5rem;
}
nav ul li a {
font-size: 1.1rem;
}
.status { .status {
height: 120px; height: 120px;
} }