You are on page 1of 8

HTML5 Tutorial

HTML5 tutorial provides details of all 40+ HTML tags including audio, video, header, footer, data, datalist, article etc.
This HTML tutorial is designed for beginners and professionals.

HTML5 is a next version of HTML. Here, you will get some brand new features which will make HTML much easier. These
new introducing features make your website layout clearer to both website designers and users. There are some elements
like <header>, <footer>, <nav> and <article> that define the layout of a website.

Why use HTML5


It is enriched with advance features which makes it easy and interactive for designer/developer and users.

It allows you to play a video and audio file.

It allows you to draw on a canvas.

It facilitate you to design better forms and build web applications that work offline.

It provides you advance features for that you would normally have to write JavaScript to do.

HTML 5 Tags
There is a list of newly included tags in HTML 5. These HTML 5 tags (elements) provide a better document structure. This
list shows all HTML 5 tags in alphabetical order with description.

List of HTML 5 Tags

Tag Description

<article> This element is used to define an independent piece of content in a document, that may be a blog, a
magazine or a newspaper article.

<aside> It specifies that article is slightly related to the rest of the whole page.

<audio> It is used to play audio file in HTML.

<bdi> The bdi stands for bi-directional isolation. It isolates a part of text that is formatted in other direction
from the outside text document.

<canvas> It is used to draw canvas.

<data> It provides machine readable version of its data.


<datalist> It provides auto complete feature for textfield.

<details> It specifies the additional information or controls required by user.

<dialog> It defines a window or a dialog box.

<figcaption> It is used to define a caption for a <figure> element.

<figure> It defines a self-contained content like photos, diagrams etc.

<footer> It defines a footer for a section.

<header> It defines a header for a section.

<main> It defines the main content of a document.

<mark> It specifies the marked or highlighted content.

<menuitem> It defines a command that the user can invoke from a popup menu.

<meter> It is used to measure the scalar value within a given range.

<nav> It is used to define the navigation link in the document.

<progress> It specifies the progress of the task.

<rp> It defines what to show in browser that don't support ruby annotation.

<rt> It defines an explanation/pronunciation of characters.

<ruby> It defines ruby annotation along with <rp> and <rt>.

<section> It defines a section in the document.

<summary> It specifies a visible heading for <detailed> element.

<svg> It is used to display shapes.

<time> It is used to define a date/time.


<video> It is used to play video file in HTML.

<wbr> It defines a possible line break.

HTML <!DOCTYPE> tag


On the HTML document you have often seen that there is a <!DOCTYPE html> declaration before the <html> tag. HTML <!
DOCTYPE> tag is used to inform the browser about the version of HTML used in the document. It is called as the document
type declaration (DTD).

Technically <!DOCTYPE > is not a tag/element, it just an instruction to the browser about the document type. It is a null
element which does not contain the closing tag, and must not include any content within it.

Actually, there are many type of HTML e.g. HTML 4.01 Strict, HTML 4.01 Transitional, HTML 4.01 Frameset, XHTML 1.0
Strict, XHTML 1.0 Transitional, XHTML 1.0 Frameset, XHTML 1.1 etc.

Let's see an example of HTML document with doctype declaration.

1. <!DOCTYPE html>  
2. <html>  
3. <head>  
4. <title>This is the title</title>  
5. </head>  
6. <body>  
7. This is the content of the document.  
8. </body>  
9. </html>  

HTML Image
HTML img tag is used to display image on the web page. HTML img tag is an empty tag that contains attributes only,
closing tags are not used in HTML image element.

Let's see an example of HTML image.

1. <h2>HTML Image Example</h2>  
2. <img src="good_morning.jpg" alt="Good Morning Friends"/>  

Attributes of HTML img tag


The src and alt are important attributes of HTML img tag. All attributes of HTML image tag are given below.
1) src

It is a necessary attribute that describes the source or path of the image. It instructs the browser where to look for the
image on the server.

The location of image may be on the same directory or another server.

2) alt

The alt attribute defines an alternate text for the image, if it can't be displayed. The value of the alt attribute describe the
image in words. The alt attribute is considered good for SEO prospective.

3) width

It is an optional attribute which is used to specify the width to display the image. It is not recommended now. You should
apply CSS in place of width attribute.

4) height

It h3 the height of the image. The HTML height attribute also supports iframe, image and object elements. It is not
recommended now. You should apply CSS in place of height attribute.

Use of height and width attribute with img tag


You have learnt about how to insert an image in your web page, now if we want to give some height and width to display
image according to our requirement, then we can set it with height and width attributes of image.

Example:
1. <img src="animal.jpg" height="180" width="300" alt="animal image">  

HTML Table Tags

Tag Description

<table> It defines a table.

<tr> It defines a row in a table.

<th> It defines a header cell in a table.

<td> It defines a cell in a table.

<caption> It defines the table caption.

<colgroup> It specifies a group of one or more columns in a table for formatting.


<col> It is used with <colgroup> element to specify column properties for each column.

<tbody> It is used to group the body content in a table.

<thead> It is used to group the header content in a table.

<tfooter> It is used to group the footer content in a table.

HTML Table Example


Let's see the example of HTML table tag.

1. <table>  
2. <tr><th>First_Name</th><th>Last_Name</th><th>Marks</th></tr>  
3. <tr><td>Sonoo</td><td>Jaiswal</td><td>60</td></tr>  
4. <tr><td>James</td><td>William</td><td>80</td></tr>  
5. <tr><td>Swati</td><td>Sironi</td><td>82</td></tr>  
6. <tr><td>Chetna</td><td>Singh</td><td>72</td></tr>  
7. </table>  

HTML Table with Border


There are two ways to specify border for HTML tables.

1. By border attribute of table in HTML


2. By border property in CSS

1) HTML Border attribute

You can use border attribute of table tag in HTML to specify border.

1. <table border="1">  
2. <tr><th>First_Name</th><th>Last_Name</th><th>Marks</th></tr>  
3. <tr><td>Sonoo</td><td>Jaiswal</td><td>60</td></tr>  
4. <tr><td>James</td><td>William</td><td>80</td></tr>  
5. <tr><td>Swati</td><td>Sironi</td><td>82</td></tr>  
6. <tr><td>Chetna</td><td>Singh</td><td>72</td></tr>  
7. </table>  

CSS Border property

It is now recommended to use border property of CSS to specify border in table.

1. <style>  
2. table, th, td {  
3.   border: 1px solid black;  
4. }  
5. </style>  

HTML <tbody> tag


HTML <tbody> tag is used to group the table rows (<tr>) together, which indicates that this is body part of a table
(<table>).

The <tbody> tag must be a child of <table> element.

The <tbody> is used along with <thead> and <tfoot> which shows the different part of the table that are table head,
table body, and table footer, however, it does not affect the layout of the table.

Syntax

1. <tbody>............</tbody>  

Example

1. <!DOCTYPE html>  
2. <html>  
3. <head>  
4.     <title>HTML tbody tag</title>  
5.     <style>  
6.         body{  
7.         margin-left: 195px;"  
8.         }  
9.     </style>  
10. </head>  
11. <body>  
12.  <h2>Example of the tbody tag</h2>  
13.  <table border="1" bgcolor="#98f5ff">  
14.    <thead>  
15.        <tr>  
16.         <th>EmpId</th>  
17.         <th>Name</th>  
18.         <th>Email-Id</th>     
19.        </tr>  
20.    </thead>  
21.  <tbody>  
22.       <tr>  
23.         <td>121</td>  
24.         <td>John</td>  
25.         <td>john123@gmail.com</td>  
26.       </tr>  
27.   
28.       <tr>  
29.         <td>122</td>  
30.         <td>William </td>  
31.         <td>william56@gmail.com</td>  
32.       </tr>  
33.   
34.       <tr>  
35.         <td>123</td>  
36.         <td>Amit</td>  
37.         <td>amitk98@gmail.com</td>  
38.       </tr>     
39.    </tbody>  
40. </table>  
41. </body>  
42. </html>  

HTML <td> tag


HTML <td> tag is used to specify the cells of an HTML table which
contain data of the table. The <td> tag must be the child element
of <tr> (table row) tag. Each table row can contain multiple <td>
data elements.

The grouped <td> elements of a <tr> tag renders as a single row


in the table. The content of the <td> elements is regular and left-
aligned in the table by default.

Syntax
1. <td >.......</td>    

Example
1.<! DOCTYPE html>  
2. <html>  
3. <head>  
4.     <title>HTML td tag</title>  
5.     <style>  
6.     th{  
7.      background-color: #6495ed;  
8.     }  
9.     th,td{  
10.         border: 1px solid black;  
11.         padding: 10px;  
12.         }  
13.     </style>  
14. </head>  
15. <body>  
16.   <h2>Example of td Tag</h2>  
17.   <table style=" border-collapse: collapse; background-color:#dcdcdc;">  
18.        <tr>  
19.     <th>Product</th>  
20.     <th>Quantity</th>  
21.     <th>Price</th>  
22.        </tr>  
23.   
24.     <tr>  
25.         <td>Books</td>    
26.         <td>5</td>  
27.          <td>589</td>  
28.     </tr>  
29.   
30.     <tr>  
31.        <td>T-shirt</td>   
32.        <td>5</td>  
33.        <td>3500</td>  
34.     </tr>  
35.               
36.             <tr>  
37.       <td>Jeans</td>      
38.         <td>2</td>  
39.        <td>5000</td>  
40.     </tr>  
41.   </table>  
42. </body>  
43. </html>  

Output:

You might also like