(adsbygoogle = window.adsbygoogle || []).push({});
Okay, lesson on HTML, HTML is really easy, just remember some tags and you're done. Basic tags then:
Headings:
<html>
<head><title>Headings</title></head>
<body>
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
</body>
</html>
<!-- ok, this is a heading. Headings are used as titles. You know when you go look up anything on a search engine, well that’s what they look for the heading. so I would suggest not to use it to make stuff bold, just use the <b></b> statement. -->
Notice <!-- and --> are comments, every HTML document has <html></html> tags. They usually have <head></head> tags and body tags, from now on, for the purpose of my fingers, I won't write them every time.
Different types of word styles ect.
<html>
<body>
<b> this text is bold </b> <br>
<i> this text is italic </i> <br>
<big> this text is big </big> <br>
<em> this text is emphasized </em> <br>
<small> this text is small </small> <br>
<strong> this text is strong </strong> <br>
<sub> this text is subscribed </sub> <br>
<sup> this text is superscripted </sup> <br>
<ins> this text is inserted </ins> <br>
<del> this text is deleted </del> <br>
</body>
</html>
<!-- I think you get the point right? Tongue -->
Oh, BTW copy all this in to a text file and save it as .htm or .html.
Horizontal rules:
hey what’s up <br>
<hr>
this<br>
<hr>
is <br>
<hr>
called <br>
<hr>
Horizontal <br>
<hr>
Rule <br>
<hr>
<!-- The <hr> statement just creates a line that goes from the beginning of the page to the end horizontally. -->
line breaking:
<html>
<body>
hey what’s up <br>
this<br>
is <br>
called <br>
line <br>
breaking <br>
</body>
</html>
<!-- See this is line breaking, it’s kind of like when you press enter on notepad or Microsoft word or any word Publishers. Smile -->
<html>
<body>
<a href="
https://xbox.com">This is a link</a>
</body>
</html>
<!-- this obviously makes a link. Between the "" u put the url of the site and after that you put what you want the links name to be ex:
This is a link -->
Okay lastly paragraphs:
<html>
<body>
<p>This is a paragraph</p>
<p>This is another paragraph</p>
</body>
</html>
<!-- This one is easy. it just makes a paragraph. As simple as that Tongue.
<p> = Start paragraph
</p> = End paragraph -->
BTW you can't create pages just yet, but you get the basics of this right?