HTML Latest Version

HTML 5 enables to create more interactive websites by embedding audio, video and graphics on the web page.

The purpose of HTML5 is primarily to make it easier for web developers.

New features:

  • Browser
  • Geolocation
  • Offline Application Cache
  • Web Storage
  • Error Handling
  • New Application Programming Interface (API)
  • New Structure

Application Programming Interface

  • 2D drawing on a web page
  • Drag and Drop
  • Timed Medial Playback
  • Browser History Management

New Structure

  • <article>
  • <aside>
  • <header>
  • <details>
  • <dialog>

and more………….

<!DOCTYPE html>
<html>
	<head>
		<title> Hello </title>
	</head>
	<body>
		<h1> Body of Page </h1>
	</body>
</html>


DOCTYPE declaration

<!DOCTYPE html>

It is an instruction to the web browser about what version of HTML the page is written in.

The <!DOCTYPE> declaration is not case sensitive.

Tagged : / / / / / /