How To Create a Website

  • 6 years ago
In this tutorial you will learn about basics of HTML and basic tag used in HTML with detailed examples. After watching this tutorial you will know basic HTML , about its tags and how to use it. This tutorial is helpful for beginers in HTML.

HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language. HTML describes the structure of Web pages using markup, HTML elements are the building blocks of HTML pages, HTML elements are represented by tags, HTML tags label pieces of content such as "heading", "paragraph", "table", and so on. Browsers do not display the HTML tags, but use them to render the content of the page.
The declaration defines this document to be HTML5, The declaration represents the document type, and helps browsers to display web pages correctly. It must only appear once, at the top of the page (before any HTML tags). The declaration is not case sensitive. The declaration for HTML5 is: . All HTML documents must start with a document type declaration: .
HTML tags are element names surrounded by angle brackets, HTML tags normally come in pairs like and The first tag in a pair is the start tag, the second tag is the end tag. The end tag is written like the start tag, but with a forward slash inserted before the tag name. HTML tags are not case sensitive: means the same as . Do Not Forget the End Tag, Some HTML elements will display correctly, even if you forget the end tag. Try to Use Lowercase Tags.
An HTML element usually consists of a start tag and end tag, with the content inserted in between. The element is the root element of an HTML page, The HTML document itself begins with and ends with . The element contains meta information about the document. The element specifies a title for the document. The element contains the visible page content, The visible part of the HTML document is between and .

If you have any question please feel free to ask in comment box.

Table of Content
00:00 Fundaments of HTML
01:27 DOCTYPE in HTML
02:55 html, title, head, body tags in HTML
07:32 p (PARAGRAPH) TAG in HTML
09:38 h1,.. ,h6 (HEADING) TAG in HTML
10:12 sub, sup, del, ins TAG in HTML
12:35 img (IMAGE) TAG in HTML