New Features Of HTML5

New Features Of HTML5 

 
1. EMBED Tag
 
[Defines a container for external applications, flash content etc.]
 
Ex: 
  1. <embed src="peoplecounter.swf" temp_src="peoplecounter.swf">  
2. FIGURE Tag
 
[It specifies contents of media element, grouped with this element(drawing, photo, graph, image etc.)]
 
Ex: 
  1. <figure>  
  2. <img src="abhi.jpg" temp_src="abhi.jpg" alt="hello HTML" width="" height="">  
  3. </figure>  
3. FIGCAPTION Tag
 
[Sets the title for <figure> element in HTMl code.]
 
Ex: 
  1. <figure>  
  2. <img src="abhi.jpg" temp_src="abhi.jpg" alt="hello HTML" width="" height="">  
  3. <figcaption>hello HTML</figcaption>  
  4. </figure>  
4. KEYGEN Tag
 
[It defines the field that you press a button in a form. it sends the public key and private key stored in the cache.]
 
Ex: 
  1. <form>  
  2. User_Name:  
  3.     <input type="text" name="User"  
  4. Password:  
  5.         <keygen name="security">  
  6.             <input type="submit">  
  7.             </form>  
5. MARK Tag
 
[It is used for highlighting the text.]
 
Ex: 
  1. <p>   
  2. <mark>C# corner</mark>  
  3. </p>  
6. PROGRESS Tag
 
[It defines that element is a running task.]
 
Ex: 
  1. <progress value="25" max="100"> </progress>  
7. SECTION Tag
 
[It defines a section part in the document. it can be a heading, page no. etc.]
 
Ex: 
  1. <section>  
  2.     <h2>C# Corner</h2>  
  3.     <p>Welcome to C# corner</p>  
  4. </section>  
8. SOURCE Tag
 
[It defines more media resources for media elements if the browser is not responding.]
 
Ex: 
  1. <audio controls="">  
  2.     <source src="abc.mp3" temp_src="abc.mp3" type="audio/mp3">  
  3.         <source src="xyz.mpeg" temp_src="xyz.mpeg" type="audio/mpeg">  
  4.         </audio>  
9. TIME Tag
 
[It Defines time and date.]
 
Ex: 
  1. <p>  
  2.     <time>6:00</time>  
  3. </p>  
10. WBR Tag
 
[It defines the ability to add text wrapping]
 
Ex: 
  1. <wbr>C# Corner</wbr>