<*html*>
<*body*>
<*h1*>HTML basics<*/h1*>
<*p>Let's learn HTML together<*/p>
<*/body>
<*/html>
This is what that will look like without the * added
HTML basics
Let's learn HTML togehterDoes that make sense? I hope so, let me explain what I just did.
-The text between <*html> <*/html> Is the description of the web page.
-The text between <*body> <*/body> is the visible page content.
-The text between <*h1> <*/h1> is displayed as a heading.
-The text between <*p> <*/p> is displayed as a paragraph.
Read over this, and soak it in a little, tomorrow we will move on with learning HTML...
HTML basics