HTML means Hyper Text Markup Language ,this language is not a proper Programming Language, it is a Markup language. The HTML language write using by the Tags .All the language write in the Tags, the Tags are closed by the Less than(<) and Greater Than(>) symbol . The full Tag looks like that <tag> main content </tag> . An example of the tag is
<table> Tag make a table in the html documents. It has horizontal and vertical lines to make a table
Table tag is useful tag in the html page.
example:
Out Put :
There are so many HTML tags we discus about the basic Html Tags.
Those are the basic tags we use mainly in our html page.Create your own
website with your own ideas.
<h1> Hello World !! </h1>
Here <h1> is the opening Tag and </h1> is the closing tag in this attributes. Here h1 is the Heading Tag of any web page. Here the Out Put of the tag will be .....
<h1> Hello World !! </h1>
Out Put : Hello World !!
Here we discus about basic HTML Tags ..
1) <a> </a>
< a > Tag is defined as the hyper link, this Tag used for the Link to one page to another page.Its general color is blue and underline. Cursor will always pointer when cursor move on it .it is defined as
<a href="example.html">Home </a>
output : Home
2) <h1> </h1>
<h1> Tag is the Heading tag, The main heading of the page created by the Tag. <h1> is the larger heading tag in all the tags ,its font size is bigger then others. If <h1> tag is placed then no other tags are placed in lest and wright. There are sub heading tags like <h2> ,<h3>,<h4>
Example:
<h1>Hello World</h1>
<h2>Hello World</h2>
<h3>Hello World</h3>
<h4>Hello World</h4>
OutPut :
Hello World
Hello World
Hello World
Hello World
3) <p> </p>
<p> Tag is the Paragraph Tag .By this tag we can write all kind of paragraph in our HTML page.
As per example we write the tag like
<p> This is paragraph </p>
The full example of the <p> tag is ....
<p id="f_para"> This is Paragraph. This is my fast Paragraph</p>
Out Put :
This is Paragraph. This is my fast Paragraph
4) <div> </div>
<div> its full form is the division .The <div> tag devised one tags to another tag. Basically it make a different section in the html document. It write like <div> Content </div>
<div id="f_div">
<h1> I am Student</h1>
</div>
Out Put :
I am Student
5) <Input type="">
In HTML there a so many input type Tag . In Input Tag it takes the input data from the User of the
Website. The input might be the form or can be the button. The different inputs are Text input, Button
input, Select Input, Check Box Input ,Email Inputs, File Inputs, Date Inputs, Search Inputs etc.
<input type="text" placeholder="type here"><br><br>
<input type="button" value="click me"><br><br>
<input type="checkbox"><br><br>
<input type="email" placeholder="email"><br><br>
<input type="color"><br><br>
<input type="date"><br><br>
<input type="file"><br><br>
<input type="search" placeholder="search..">
Out Put :
6) <br>
<br> Tag is the breaking tag it breaks the two elements in the Html documents. It also make a space
within two element in the html documents.
example:
Before <br> Tag
<input type="text" placeholder="type here">
<input type="button" value="click me">
Out Put :
After <br> tag
<input type="text" placeholder="type here"> <br>
<input type="button" value="click me">
Out Put :
7) <img src="photo.jpg>
<img> Tag is Used for the import of the image. Any kind of Image is displayed in the HTML
Page. It supports the .png, jpg, .jpeg types of images.. The Example of the Tag
<img src="photo.jpg">
8) <table> <table>
Table tag is useful tag in the html page.
example:
<table>
<tr><th>Month</th><th>Savings</th></tr>
<tr><td>January</td><td>$100</td></tr>
<tr><td>February</td><td>$80</td></tr>
</table>
Out Put :
Month | Savings |
---|---|
January | $100 |
February | $80 |
There are so many HTML tags we discus about the basic Html Tags.
Those are the basic tags we use mainly in our html page.Create your own
website with your own ideas.
Comments
Post a Comment
Comment Here