HTML

HTML is stands for HyperText Markup Language and it is a markup language. To display how text should appear HTML uses "codes".

Start by opening a program that can create txt files(e.g. Microsoft Wordpad). "Copy and Paste" parts then modify them to your liking. When you finish save the file as PAGE NAME.html. Check that the file is not a .txtfile.

Text Decoration

This is bolded text.
<b>TEXT HERE</b>

This is underlined text.
<u>TEXT HERE</u>

This is italicized text.
<i>TEXT HERE</i>

This is striked out text.
<strike>TEXT HERE</strike>

This is text on marquee.
<marquee>TEXT HERE</marquee>

Links

Click here!
<a href="LINK HERE">LINK NAME</a>


<a href="LINK HERE"><img src="IMAGE LINK">

Images

image
<img src="IMAGE LINK" alt="TAG OR NAME"/>

Spaces

Break
Break
TEXT HERE <br> TEXT HERE

Paragraph

Paragraph
TEXT HERE <p> TEXT HERE

Line


Line
TEXT HERE <hr> TEXT HERE

Getting Started

Get started with the following "codes":
<html>
<body>
<h1>Heading</h1>
<p>Paragraph</p>
</body>
</html>