Beginner's guide - Conclusion

  »   Beginner's guide  »   HTML Tutorial - Conclusion

In the previously example has been introduced some new tags. We will try to give a definition of them, so that we can start in the next lesson, the real HTML TUTORIAL. The tags of which i was talking about are : <head>, <title>, <h2> and <p>.

The example in discussion:

html<html>
	<head>
	
		<title>My page! </title>
	
	</head>
	
	<body>
	
		
		<!-- _in_article_ad -->
		<ins class="adsbygoogle" style="display:block; text-align:center;" data-ad-layout="in-article" data-ad-format="fluid" data-ad-client="ca-pub-2257661556046991" data-ad-slot="4697517129"></ins>
		<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
	<h2>Welcome.</h2>
		<p>Very soon I will make a page which is going to be so cool!</p>
	
	</body>
</html>

<head>

This tag is immediately after <html> and is used to indicate to the browser, useful information like page title, content ( used by the old searching engines) 1and many others

<title>

Is situated between <head> and </head>. This tag is the one that gives the page the name. The name will be shown in the browser, usually on the upper left side. In the previous example the title was " My page !" and it will be shown as the browser's title.

<h2>

This is the title that appears on the page, before the content and it will be bigger than the content's character. <h2> means that is the second sized character between the other six already existent. <h1> is the biggest character and <h6> is the smallest.

<p>

Is the tag that marks the opening and the closing of a paragraph. So when you start a paragraph assure yourself that you used <p> in the beginning and </p> and in the end.

Keep learning - HTML Tutorial

Now that you have understood the base of the HTML labels and how these work, you can go on an start reading section HTML Tutorial. Here you will learn all the tags and the HTML attributes, how to use them and how to build a functional web page.