WWW Journey Code School

WWW Journey Code School

Welcome To HTML Lesson 1

This Lesson Is About The Structure Of HTML Files

Now Lets See The Code!


First thing you do before you code is to save the document as example.html

Then, To start a HTML file is the !DOCTYPE HTML tag...

It Looks Like This:

After that you need a html lang="en" tag. That makes it so the program you are using knows that it is English

It looks like this:

Now that you have that you need meta charset="UTF-8" <-- that is the american form of code for HTML

That looks like this:

Last but not least you need the MOST important tag, html

That looks like this:

Now add all your head and body tags and it should looks like this!

Looks good! Now lets go to lesson 2!