Learn Basic HTML5 Concept – HTML5 Reference Guide

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

HTML5

Learn HTML5 Basic Concept – HTML5 Reference Guide: In this post learn basic concept of HTML with examples and new features of HTML5 like new Doctype and elements. Follow and Like us on Facebook, Twitter, LinkedIn, Pinterest for the latest posts.

Define HTML basic concept with examples

HTML5 Reference Guide: HTML5 is a new version or new standard of HTML. It has new elements and features which make web designing more powerful and easier HTML Tutorial and HTML5 Reference Guide.

HTML5 Reference: New Doctype Example in HTML5

Document type declaration in HTML5 document is very easy and simple other than 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>
 

HTML5 Tutorial And HTML5 Reference Video

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.

 

Other Related Posts

 

Leave a Reply