Skip to content

Commit

Permalink
Added html version of markdown file from lesson 00
Browse files Browse the repository at this point in the history
  • Loading branch information
akiosoul committed Jul 1, 2024
2 parents 546ee1b + 7cb99e6 commit 047f0a9
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 0 deletions.
51 changes: 51 additions & 0 deletions lesson_01/admays/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Markdown to HTML</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<h2>Hello, World!</h2>
<p>Hey there! My name is Adrian, and it's nice to code again (even if this is just markdown).</p>

<h3>Communication</h3>
<p>Email is best for general things, but Slack is best for instant communication.</p>

<h3>Work (school?) hours</h3>
<p>I like to work early, so I start at 8 am and try to end around 5 pm.</p>

<h3>The journey so far</h3>
<p>I've spent a lot of time making very basic HTML pages thanks to a little Raspberry Pi 1 and its basic text editor. Since then, I've dabbled in JavaScript to make some small projects. Lately, I've been especially drawn towards the hardware side of tech. I'm continuing to upgrade my PC, next is a 4060!</p>

<h3>Goals</h3>
<ul>
<li>Learn how I learn best! (meta, right?)</li>
<li>Gain further proficiency with HTML, CSS, Javascript, and other languages.</li>
<li>Graduate from college with a degree in computer science</li>
<li>Save up for the RTX 4060 and an MPC 500</li>
<li>Start my career</li>
</ul>

<h3>Hobbies</h3>
<ul>
<li><strong>Gaming:</strong> My favorite games are Super Smash Brothers (all of them), Overwatch 2, Rocket League, and Fire Emblem: Three Houses. As someone once said, I feel like I spawned into life with a Wii in the house.</li>
<li><strong>Music:</strong> I love listening to music, but I love making it even more. It all truly began with the Yamaha Mox-F8, which has recording capabilities. I used that keyboard as my primary Digital Audio Workstation (DAW) for 8? years or so. Finally, I bought and upgraded a FL Studio license, and it's stuck with me ever since! I make Lofi-Chillhop, Breakcore, House, Phonk, and a variety of other genres.</li>
<li><strong>PC Building:</strong> I've not been able to build from the ground up, but my first experience building at all was phenomenal. I can't wait to do it again. When I'm not building, I'm always researching parts to get or new technologies that will accelerate the PC space.</li>
<li><strong>Reading:</strong> The Star Wars books from the 90s-2000s never get old. I also love history texts, particularly regarding church history, philosophy, and WWII. I'm also slowly but surely building up my manga collection with Fullmetal Alchemist, Dragon Ball, and Naruto.</li>
<li><strong>Movies/Shows:</strong> Some favorites are Tenant, Spider-Man: Into the Spider-Verse, most Star Wars movies (seven and nine are disqualified), Avatar: The Last Airbender, and Saving Private Ryan. There are many more!</li>
</ul>

<h3>Speed Round!</h3>
<ul>
<li>Hot over cold weather.</li>
<li>Cake over ice cream.</li>
<li>Coffee Order: Preferably an espresso or Mexican mocha.</li>
<li>I do karate!</li>
<li>Favorite Marvel Hero:</li>
</ul>

<img src="https://static.wikia.nocookie.net/marveldatabase/images/f/fe/Avengers_Endgame_poster_041_Variant_Textless.jpg/revision/latest?cb=20190629185509" alt="iron man">
</body>
</html>
54 changes: 54 additions & 0 deletions lesson_01/admays/stylesheet.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
line-height: 1.6;
padding: 2em;
background-color: #0d1117;
color: #e6edf3;
}

h2, h3 {
border-bottom: 1px solid #eaecef;
padding-bottom: 0.3em;
margin-bottom: 1em;
font-weight: 600;
}

h2 {
font-size: 1.5em;
}

h3 {
font-size: 1.25em;
}

p {
margin: 1em 0;
}

ul {
padding-left: 2em;
margin: 1em 0;
}

ul li {
list-style-type: disc;
}

strong {
font-weight: 600;
}

img {
max-width: 100%;
height: auto;
display: block;
margin: 1em 0;
}

code {
background-color: rgba(27,31,35,0.05);
border-radius: 3px;
padding: 0.2em 0.4em;
font-size: 85%;
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

0 comments on commit 047f0a9

Please sign in to comment.