Thursday, August 7, 2014

Examples With Basic HTML Tags

Hyper text markup language which is second-hand to make web pages. Typically HTML is used to show the basic configuration of a website on the web browser. This is very basic language for web designing. All other web languages are fixed into HTML.  You can say HTML is the back bone of web program. Today we will talk about some basic tags of HTML. The very basic tags we will talk about through this tutorial and also we will come to know the basic structure of a web page that is coded within HTML alone.
HTML workings tags and tags come in pair. So all tag has two parts, when we include an HTML tag within a website, we must create it first and after script some text or content we close that tag. The tag construction is like this case:
<html> Content or text here</html>
Examples With Basic HTML  Tags : 
<html>
<– from here the whole HTML page is started –>
<head>
<title>This is my first page</title>
</head>
<body bgcolor=”green”>
<h1> Welcome friend to my site!</h1>
<h2>This is my first website</h2>
<p style=”color:red”>I’m a web designer from Lahore, Pakistan. I’ve been blogging for last couple of years. I am very interested to further learn web designing. </p>
</body>
<– The HTML whole page is ended here –>
</html>


Same Others HTML Tags :
<b> for bold text</b>
<i> for italic text</i>
<u>for underlining</u>
<big>for big text</big>
<strong>for strong text</strong>
<center>for center align a text or element</center>
<div> for a division </div>