Resource icon

I learned HTML!

Hey, ender here, for my one of my first non-story blog posts! I learned
Hyper Text Markup Language (otherwise known as HTML)!

Heres some code:

<!DOCTYPE html>
<html>
<head>
<body>
<link href="control-file.css" rel="stylesheet"> (there was a css file)
</head>
<div class="games">
<h1>Hello!</h1>
<h3>Welcome!</h3>
<p>How are you?</p>
<p>I'm just starting out. Come back later when I'm better than ever!</p>

<h1>Coming Soon...</h1>
</ul>
To do list:

<ul>
<li>Nothing right now!</li>

<p>Want your own website like this? Codecadamey teaches you HTML, CSS, and more! Find their website <a href="https://www.codecademy.com/">here.</a>
</div>
</body>
</html>

Thats all for now, Happy New Year!

Latest Comments

The body tag should go after the head tag and the closing ul tag should go after the closing li tag (since you only have one item in the list). Also, you'll have to close everything with closing body and html tags.
EnderLord
EnderLord
oh thx
Back
Top