HTML • Here below you can see some basic HTML terms Code
What does this mean?
<html>
This tells the program you are working in HTML
<h1>
This is a form of a Header
<p>
This is used when you want to write a paragraph
<body>
This is how the site will look
<h2>
Another form of a header
For this lesson • For this lesson you are only going to be needing to understand • <html> • <h1> • <p>
Beginning and End • So if I was going to start my html code I would first need to put • <html> • You always when writting in HTML need to put this. • Then you would put in the rest of the code • But to end the HTML you need to put • </html>
Ending • When you end anything in HTML you always need to put • </______> • The blank space is where you put the code
Beginning and end Beginning
End
<html>
</html>
<h1>
</h1>
<p>
</p>