Category: 01. HTML Tutorials
-
Headings
HTML headings are used to define the hierarchy (levels) and structure of content on a web page. They create a visual hierarchy, with the highest level heading which is h1 indicating the most important content or the main heading, and lower-level headings like h2, h3, h4, etc. for subtopics. Headings are crucial for structuring content…
-
Formatting
If you use a word processor, you must be familiar with the ability to make text bold, italicized, or underlined; these are just three of the ten options available to indicate how text can appear in HTML and XHTML. Bold Text Any content enclosed within <b>…</b> element, is displayed in bold as shown in the example below…
-
Attributes
We have seen few HTML tags and their usage like heading tags <h1>, <h2>, paragraph tag <p> and other tags. We used them so far in their simplest form, but most of the HTML tags can also have attributes, which are extra bits of information. An attribute is used to define the characteristics of an HTML element and is…
-
Elements
What is an Element in HTML? An HTML element is a building block of a web page. It consists of a start tag, an end tag, and the content between them. In the closing tag, the element name is preceded by a forward slash as shown in below table − Start Tag Content End Tag <p> This…
-
Basic Tags
HTML tags are the fundamental elements of HTML used for defining the structure of the document. These are letters or words enclosed by angle brackets (< and >). Usually, most of the HTML tags contains an Opening and a closing tag. Each tag has a different meaning and the browser reads the tags and displays…
-
Editors
HTML Editors are tools to write and run (in some cases) an HTML document. There are several HTML Editors available to the user (paid and unpaid both). Certain add-on features are provided in different HTML Editors other than Notepad, such as themes, terminal support, etc. In this tutorial we will learn about various online HTML…
-
Overview
HTML stands for Hypertext Markup Language, and it is the most widely used language to write Web Pages. Originally, HTML was developed with the intent of defining the structure of documents like headings, paragraphs, lists, and so forth to facilitate the sharing of scientific information between researchers. Now, HTML is being widely used to format web pages with…
-
History and Evolution
From 1990 to 1995, HTML underwent changes and extensions, initially at CERN and then at the IETF. The World Wide Web Consortium (W3C) became the new home for HTML development. Hypertext We must first examine the idea of hypertext in order to comprehend the origins of HTML. Early 20th-century pioneers like Vannevar Bush proposed the concept of…
-
HTML Tutorial
HTML stands for Hyper Text Mark-up Language, which is the most widely used language on the Web to develop web pages. HTML was created by Berners-Lee in late 1991 but “HTML 2.0” was the first standard HTML specification which was published in 1995. HTML 4.01 was a major version of HTML and it was published in late 1999. Though…