add skeleton page for todo.php

This commit is contained in:
emma 2024-12-29 19:56:17 -05:00
parent 7fea9b0651
commit 834de7a00a
1 changed files with 30 additions and 0 deletions

30
life/todo.php Normal file
View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8"
<title>emma's things to do</title>
<link rel="stylesheet" href="../style/style.css">
</head>
<body>
<?php include "../includes/header.php" ?>
<?php include "../includes/nav.php" ?>
<main>
<h1>emma's things to do</h1>
<section>
<p>
this page is a little less specific than <a href="./goals.php" target="_blank">emma's goals</a> they are things that i'd like to accomplish, but are not truly personal to me. they are things you could look through as well if you are looking for something new to try out or a skill to pick up. sometimes i'll try to include a resource i've found for eventually pursuing a topic if i have researched it far enough to do so. i will mark resources that are paid and resources that are free
</p>
<h3>todo list</h3>
<ul>
<li></li>
</ul>
</section>
</main>
<?php include "../includes/footer.php" ?>
</body>
</html>