Compare commits
7 Commits
5ac2cd192b
...
4e565c3c52
Author | SHA1 | Date | |
---|---|---|---|
|
4e565c3c52 | ||
|
f296923e97 | ||
|
fa57f99431 | ||
|
c26f689cf2 | ||
|
834de7a00a | ||
|
7fea9b0651 | ||
|
717de3a435 |
@ -7,6 +7,7 @@
|
||||
<li><a href="../life/technology.php" target="_blank">technology</a></li>
|
||||
<li><a href="../life/picrew.php" target="_blank">emma's picrews</a></li>
|
||||
<li><a href="../life/postroll.php" target="_blank">emma's postroll</a></li>
|
||||
<li><a href="../life/todo.php" target="_blank">emma's things to do</a></li>
|
||||
<li><a href="../life/goals.php" target="_blank">emma's goals</a></li>
|
||||
</ul>
|
||||
<h3> site information</h3>
|
||||
|
56
life/todo.php
Normal file
56
life/todo.php
Normal file
@ -0,0 +1,56 @@
|
||||
<!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>
|
||||
need to get started making websites? i heard <a href="https://htmlforpeople.com/" target="_blank">HTML for People (free)</a> is good for that
|
||||
</li>
|
||||
<li>
|
||||
maybe you want to learn HTML and CSS? I used this <a href="https://www.freecodecamp.org/learn/2022/responsive-web-design/" target="_blank">freeCodeCamp course (free)</a>
|
||||
</li>
|
||||
<li>
|
||||
how about JavaScript? I am working through this <a href="https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures-v8/" target="_blank">freeCodeCamp course (free)</a>
|
||||
</li>
|
||||
<li>
|
||||
maybe get a backend going with PHP? i bought this book <a href="https://nostarch.com/php-crash-course" target="_blank">PHP Crash Course (paid)</a> found this handbook on <a href="https://www.freecodecamp.org/news/the-php-handbook/" target="_blank">freeCodeCamp (free)</a> and found out there will be a <a href="https://phpforpeople.com/" target="_blank">PHP for People</a>
|
||||
</li>
|
||||
<li>
|
||||
need to brush up on CSS <a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/#aa-flexbox-properties" target="_blank">flexbox</a> or <a href="https://css-tricks.com/snippets/css/complete-guide-grid/" target="_blank">grid</a> (both free articles)
|
||||
</li>
|
||||
<li>
|
||||
want to learn how to run linux on a VPS? there's a subreddit built in a course style for that <a href="https://www.reddit.com/r/linuxupskillchallenge/" target="_blank">/r/linuxupskillchallenge</a> (free course, free-tier for free-credit cloud providers usually require a non pre-paid credit card on file)
|
||||
</li>
|
||||
<li>
|
||||
persoanlly, i want to learn pixel art one day. i found this interactive game on steam for a possible startig point <a href="https://store.steampowered.com/app/2330360/Pixel_Art_Academy_Learn_Mode/" target="_blank"> Pixel Art Academy: Learn Mode (paid)</a>
|
||||
</li>
|
||||
<li>
|
||||
maybe PHP isn't your thing, want to learn HTML, CSS, JS and either Ruby on Rails or Node JS? You can use <a href="https://www.theodinproject.com/" target="_blank">The Odin Project (free)</a> for that!
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
i think that's all i have for now that i want to do soon. when i get more things i'll add them to the list! <3
|
||||
</p>
|
||||
</section>
|
||||
</main>
|
||||
<?php include "../includes/footer.php" ?>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -118,6 +118,22 @@
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
12-29-2024
|
||||
<ul class="nested-list">
|
||||
<li>
|
||||
better styling for guestbook replies to make it apparent they are replies to entries. also spaced them out from other entries in the guestbook from visitors
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
12-30-2024
|
||||
<ul class="nested-list">
|
||||
<li>
|
||||
added <a href="../life/todo.php" target="_blank">emma's things to do</a> a list of tasks mainly centered around web development that i would like to do, but you can pick from and do to!
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</details>
|
||||
</section>
|
||||
|
@ -44,6 +44,12 @@ ul.pages li.active {
|
||||
border-bottom: 2px solid var(--border);
|
||||
}
|
||||
|
||||
.a {
|
||||
padding-left: 2rem;
|
||||
border-left: 8px double var(--border);
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.guestbook-text {
|
||||
padding-bottom: 0.5rem;
|
||||
border-bottom: 2px solid var(--border);
|
||||
|
Loading…
x
Reference in New Issue
Block a user