SO YOU WANNA BE MASTER OF HTML?
DO YOU HAVE THE SKILLS TO BE NUMBER ONE--

basics

... okay uhh let's start this for real. |D;; also shut up I got really carried away with the design okay. To start things off! With the basics. \o\ This is what a very, very simple page would look like--I'll explain the variables after.

<html>
<head>
<title>oh yay a title</title>
</head>

<body>Hello, this is content! :D</body>
</html>

NOW. Explanation time yaaay!

  • HTML: This indicates a web page. Without this, nothing on your page will show up. :D; The first tag needs to be the first thing in your code. Its closing tag needs to be the last thing in your code.
  • HEAD: This is where you put all your fancy CSS and designs and stuff! Nothing here will show up on your page;
  • TITLE: Whatever you put in here is what shows up on the... top of the page ( aka the part that says "Mozilla Firefox" when you're on a new page/tab :< I dunno how to explain it; for example, this page's title is "\(o_O)/" ). It's not necessary, but I always like using it. |D;;
  • BODY: Aaand this is where your content goes! This is what you see on your page. |D;; Tables, div layers, text--you name it; it all goes here.

NOW FOR THE NEXT PART~

css

This is where you start to get fancy.