How to use kbd tag


<kbd>

All Tags not showing in online page, but show on view source.

<kbd>Your text like a keyboard input text</kbd>

Code show like this:

Your text like a keyboard input text

Browser Support

The <kbd> tag is supported in all major browsers.

What is kbd tag

kbd tag is used to keyboard input text and font family is courier.

Difference in HTML5

The kbd tag is new in HTML5.

How to use ins tag


<ins>

All Tags not showing in online page, but show on view source.

<p>Your text is underline <ins>Hello</ins>!</p>

Code show like this:

Your text is underline Hello!

Browser Support

The <ins> tag is supported in all major browsers.

What is ins tag

ins tag is used to underline text.

How to use input tag


<input>

All Tags not showing in online page, but show on view source.

<form>
    Your Name: <input type="text"><br>
    Your Email ID: <input type="email"><br>
</form>

Code show like this:

Your Name:
Your Email ID:

Browser Support

The <input> tag is supported in all major browsers.

What is input tag

input tag is used to input field fields. Input tag used with type like: type=”text”, type=”email”, type=”tel”, type=”date”, type=”time”, type=”color”, type=”password”

How to use img tag


<img>

All Tags not showing in online page, but show on view source.

<img src="images/area_map.jpg">

Code show like this:

Browser Support

The <img> tag is supported in all major browsers.

What is img tag

img tag use for insert image.

How to use iframe tag


<iframe>

All Tags not showing in online page, but show on view source.

<iframe src="index.html" width="100%" height="300"></iframe>

Code show like this:

Browser Support

The <iframe> tag is supported in all major browsers.

What is iframe tag

iframe tag is used to import other html page in your html page, other video from other site

How to use i tag


<i>

All Tags not showing in online page, but show on view source.

<i>Your text is highlighted</i>

Code show like this:

Your text is highlighted

Browser Support

The <i> tag is supported in all major browsers.

What is i tag

i tag is italic. basically use for highlighted text and italic text.

How to use html tag


<html>

All Tags not showing in online page, but show on view source.

<!DOCTYPE HTML>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
Welcome to Home2IT.com
</body>
</html>

Code show like this:

Welcome to Home2IT.com

Browser Support

The <html> tag is supported in all major browsers.

What is html tag

html tag is used to defined document what is your html. All tags used into this.

Difference in HTML5

All layout attributes is removed in HTML5.

How to use hr tag


<hr>

All Tags not showing in online page, but show on view source.

<p>Html Content start here</p>
<hr>
<p>Breaked your cotent here.</p>

Code show like this:

Html Content start here


Breaked your cotent here.

Browser Support

The <hr> tag is supported in all major browsers.

What is hr tag

hr tag is used to break content with line.

How to use header tag


<header>

All Tags not showing in online page, but show on view source.

<p>Website Logo</p>
<p>Home | About Us | Contact Us</p>

Code show like this:

Website Logo

Home | About Us | Contact Us

Browser Support

The <header> tag is supported in all major browsers.

What is header tag

header tag is used to header content of web page. You can use Logo of website, navigation and search option in header.

Difference in HTML5

The header tag is new in HTML5.

How to use head tag


<head>

All Tags not showing in online page, but show on view source.

<html>
<head>
<title>Your title</title>
</head>
<body>
Content of your web page
</body>
</html>

Code show like this:

Content of your web page

Browser Support

The <head> tag is supported in all major browsers.

What is head tag

head tag is used to website main elements. Scripts, Tittle, Using CSS, Metatags used to head part