Skip to content
Forum Navigation
You need to log in to create posts and topics.

Basics Of HTML

Basics Of HTML:

 

Opening Tags:

<html>
<body>

HTML Headings:

<h1>Heading One Size Is 24</h1>
<h2>Heading two Size Is 22</h2>
<h3>Heading Three Size Is 18</h3>
<h4>Heading Four Size Is 16</h4>
<h5>Heading Five Size Is 12</h5>
<h6>Heading Six Size Is 10</h6>

HTML Paragraphs:

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

HTML Links:

<a href="http://www.globalguideline.com">GGL</a>

 

 

HTML Images:

<img src="Image Sourse" alt="Image Name" width="104" height="142">

Ending Tags:

</body>
</html>