HTML5 Tutorial

HTML5 Tutorial HTML5  is a Web page (or HTML document) in a plain text file that has been encoded using Hypertext Markup Language (HTML) to appear in a Web browser. Here is a meaning of HTML word-by-word:
Hypertext: – is a text that a user will click to jump from one document to another document. This is a reference of Web pages to link to one another.

Markup: – are the tags that apply layout and formatting conventions to plain text. In a simple way, the plain text is “marked up” with the tags.

Language: – is a reference to the fact that HTML is considered as a programming language.

HTML iFRAMES

HTML iFRAMES The use of <iframe> is to insert outside webpages within a frame in current webpage. The <iframe> element allows the user to open a window within a window, or a browser within a browser. The iframe Url address must be enclosed within the <iframe> element. Syntax of an iframe <iframe src =”Destination/iframe URL”> </iframe> iFrame Attribute There are two …

HTML iFRAMES Read More »

Types of Text

Types of Text There are two types of text defined in HTML5: Structural: In this, Text have a key impact on the overall structure of the Web Document. The structure of the page is disturbed if their positions are altered. Eg: Headings(<h1>) ,paragraphs (<p>). Semantic: In this, Text have particular unique meaning associated with them. …

Types of Text Read More »

Headings

Headings There are six level of heading in HTML from <h1> to <h6>. They create a hierarchy of information, and are used to create headings for sections within the document. The <h1> represent the bigger size and<h6> represent the smaller size of text.

Paragraphs

Paragraphs Paragraphs are used to represent a block of text or a single line of text. Each paragraph is displayed on a new line, only a single whitespace is recognized between two words and Multiple white spaces are collapsed into a single one.

Breaks

Breaks Here, you will see different ways to introduce line breaks in between text blocks. Breaks: Element <br> The break element <br> is used to introduce breaks in between text. Subsequent texts appear on a new line. It is mostly used for writing poems, address, tablelist.     Word Break Opportunity: Element <wbr> Word Break opportunity (<wbr>) element …

Breaks Read More »

HTML Div Element

HTML Div Element Div element is used to create structure and give meaning to HTML elements. Different types of Div element There are two types of Div element named as Block and Inline: BLOCK: This Block level element appear as a block i.e they appear on the new line every time forcing line breaks. Eg: <h1>, …

HTML Div Element Read More »

Extra Elements

Extra Elements HTML5 Editable Text: contenteditable Attribute A new addition to HTML5 is attribute contenteditable, it allows users to edit the text(contents) on the page. To allow this feature set contenteditable=”true”, to disable this feature set contenteditable=”false” and if no setting is provided then it inherits the property settings from its parents.     HTML5 Element details Element The …

Extra Elements Read More »