HTML5 Tutorial – HTML5 Reference, HTML5 Examples

Last Updated on: April 13, 2020   Posted By: Web Design Reference

HTML5 HTML5 Tutorial: Learn HTML basic concept, HTML Tags, HTML Attributes, HTML Forms, HTML Graphics, HTML Media, HTML Examples. In this page to learn HTML definition, Purpose of using HTML language, A newer version of HTML, and how to create a web page using HTML elements with examples. Follow and Like us on Facebook, Twitter, LinkedIn, Pinterest for the latest posts.

What is HTML?

HTML stands for Hyper Text Markup Language and it is a language of www (World Wide Web). It is used for standard text formating, It is used for creating and displaying a page on the web.

HTML5 Tutorial: HTML5 Introduction, HTML5 Examples

HTML5 Introduction: HTML5 is a new version and new standard of HTML. It has new elements and new features, which make web design more powerful, Better and easier.

What’s New in HTML5 Elements?

The most interesting new HTML5 elements are:

  • The DOCTYPE declaration for HTML5 is very simple vs older version of HTML.
  • The character encoding (<meta charset=”UTF-8″>) declaration is very simple. The default character encoding in HTML5 is UTF-8.
  • New semantic elements like <header>, <footer>, <article>, <aside>, and <section>.
  • New attributes of form elements like number, date, time, calendar, and range.
  • New graphic elements: like <svg> and <canvas>.
  • New multimedia elements: like <audio> and <video>.
 
 

New Doctype (Document Type Declaration) in HTML5

Document type declaration in the HTML5 document is a very easy and simple other than an older version of HTML.

Example: HTML5 Doctype declaration
<!DOCTYPE html>

A Minimal HTML5 Page or Document on the Web

To display a web page or document on the web you need basic elements like DOCTYPE, HTML, Head, Title, Meta Tags, Body, Paragraph Tags, etc.

Example: Minimal HTML5 Document
<!DOCTYPE html>
<html>
<head>
<meta charset=”UTF-8″>
<title> A minimal HTML5 Document Example. </title>
</head>
<body>
<p> The first paragraph of the page. </p>
</body>
</html>

HTML Tutorial: Learn Basic Concept of HTML5


 

Web Design Reference Guide Android App for Website Developers

Web Design Reference Guide Android App: Web Design Tutorial App is a tutorial and reference-based app. It provides Web Design Tutorial and Reference to Web Designers or Web Developers to grow their Web Development skills.

 

Also Related to This Page

 
 

Leave a Reply