- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML: Introduction
HTML was introduced by Tim Berners-Lee, a British computer scientist, in 1991. Berners-Lee is credited with inventing the World Wide Web, and HTML was one of the foundational technologies he developed to enable the creation and sharing of documents over the Internet.
Also, HTML (Hypertext Markup Language), which is the standard markup language used to create web pages. Here are some key points that constitute the introduction to HTML:
- Structure: HTML documents are structured using elements, which are defined by tags enclosed in angle brackets < >. The basic structure of an HTML document includes the <html>, <head>, and <body> tags.
- Tags: HTML tags define the structure and content of a web page. Examples of tags include <p> for paragraphs, <h1> to <h6> for headings, <div> for divisions, <a> for hyperlinks, and so on.
- Attributes: Tags can have attributes that provide additional information about the element. Attributes are specified within the opening tag and have values enclosed in quotes. For example, the <a> tag can have attributes like href for specifying the hyperlink reference and target for defining how the link should open.
- Text Content: HTML allows you to include text content directly within tags, such as paragraphs (<p>), headings (<h1> to <h6>), lists (<ul>, <ol>, <li>), and more.
- Links and Images: HTML provides tags for creating hyperlinks (<a>) and embedding images (<img>).
- Comments: You can add comments to an HTML document using <!-- --> to provide notes or descriptions that are not displayed in the browser.
- Doctype Declaration: The doctype declaration (<!DOCTYPE html>) is placed at the beginning of an HTML document to indicate the HTML version and document type.
Understanding these basics lays a strong foundation for working with HTML and creating web pages.