2025-06-30 15:34:10 -05:00

76 lines
3.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<main class="monitor-case old-plastic-light">
<div class="monitor-screen crt">
<div class="monitor-contents">
<article>
<h1>The_Cobbler_64</h1>
<p>
In this program we will learn how to build our own personal website. Inspired by the style of
websites from earlier 2000s and 2010s.
</p>
<p>
Websites from this earlier time on the internet use to be much simpler in terms of features,
but use to be much more unique, expressive, and artistic in terms of style.
</p>
<p>
We will be learning the fundamental skills with which to build our own personal website, namely,
<u>HTML</u>,
<u>CSS</u>, and a tiny bit of
<u>JavaScript</u>.
</p>
<p>
This website is modeled after a fantasy retro computer I have named "The_Cobbler_64", but for your website you should choose a theme
that expresses something about yourself that you want represented.
</p>
<p>
You will also want to figure out what you want your website to be about, or what you are wanting to
accomplish with your website. Before social media's existed, people use to create site to share themselves
with the world like their hobbies, their interests, their expertise on a given subject, or just about their
daily life.
</p>
<p>
What ever you decide to do with your website
<strong><u>NEVER SHARE IDENTIFYING INFORMATION!!!!!</u></strong>
</p>
<h2>Tasks</h2>
<ul>
<li>Decide on a particular theme you want your website to follow.</li>
<li>Decide what thing(s) you what your website to be about.</li>
</ul>
</article>
</div>
</div>
</main>
<nav class="right-peripherals old-plastic-light">
<div class="right-inset old-plastic-dark">
<div class="light-button-wrapper">
<button class="light-button red-button">
<div class="button-inner">HOME</div>
</button>
<button class="light-button yellow-button">
<div class="button-inner">HTML</div>
</button>
<button class="light-button blue-button">
<div class="button-inner">CSS</div>
</button>
<button class="light-button white-button">
<div class="button-inner">JS</div>
</button>
<button class="light-button green-button">
<div class="button-inner">LINKS</div>
</button>
</div>
</div>
</nav>
<script src="index.js"></script>
</body>
</html>