DEV Community

A K I L A N
A K I L A N

Posted on

Inroduction to HTML

HTML

  • HTML stands for hyper text markep language
  • It is a standard Language for creating and structuring web page using tags and elements
  • It is a static language

static language reference

  • It consists of series of element
  • HTML elements tell the browser how to display the contents
  • where HTML file is written ,saved ,opened in a browser, rendered, and finally displayed

example

<html>
   <head>
       <title> AK Movies List </title>
  </head>
 <body>
     <h1>Mankatha</h1>
     <h1>Billa</h1>
 </body>
</html>

Enter fullscreen mode Exit fullscreen mode
  • tages are <h1> </h1> <html> </html>
  • elements are <h1> mankatha </h1>

1.Latest Version of HTML
HTML 5 is the latest version .This is 5th and final version that is now retired by (world wide Web Consortium) W3C.HTML5 was first released in a public-facing form on 22 January 2008 and with major updates and "W3C" status in October 2014.

2.Features of HTML 5.

  1. Audio and Video

  2. vector graphics( this feature enables drawing grpahics directly in the browser using Javascript)

3.Header and footer (this will replace generic

elements by clearly marking the top and bottom section of a webpage. this improves the semantic structure and helps browsers interpet content order ) here semantic means clearly describes its meaning to both the browser and the developer.

4.Figure and Figcaption (to grouped medeia and self contained content with in a document)

5.Nav Tag ( it is used to define a section of navigation links within a website )It helps structure areas that connect to different pages or sections.

6.Progress Tag(is used to check the progress of a task during the execution.)

7.Placeholder Attribute (this showa hint text inside the input fields untile the user types)
Email Attribute ( the input email id is automatically vaildated to check the format of the email is correct or wrong )

8.web stroage.
# this provides the localstroage and sessionstroage to store directly in the browser .It offers a safer

9.Offline Web Applications
# The application cache (appcache) enables wed apps to function offline by stroing essential locally .

10.WebSockets.
#WebSockets allow real-time, bidirectional communication between the client and server.

  1. aternative of markup language.
  • Extensible Markup Language (XML)
  • Extensible Hypertext Markup Language (XHTML)
  • Standard Generalized Markup Language (SGML)

Top comments (0)