HTML (Wordhole): Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "Definition HTML (or Hyper Text Markup Language) is a programming language used to display hypertext in a webbrowser, using .html files. Hypertext is a method that allows cross-referencing content by the usage of links. HTML consists of tags, such as: Formatting your documents using HTML allows a browser to interpert your content directly, which in turn "displays" your content as decided upon in the browser protocols, the web standards of W3C, enhancing the accessabilit...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
Definition
==Definition==
HTML (or Hyper Text Markup Language) is a programming language used to display hypertext in a webbrowser, using .html files. Hypertext is a method that allows cross-referencing content by the usage of links. HTML consists of tags, such as:
HTML (or Hyper Text Markup Language) is a programming language used to display hypertext in a webbrowser, using .html files. Hypertext is a method that allows cross-referencing content by the usage of links. HTML consists of tags, such as:<syntaxhighlight lang="html">
 
<h1>I'm a heading</h1>
<a href="https://example.com">Superlink</a>
</syntaxhighlight>


Formatting your documents using HTML allows a browser to interpert your content directly, which in turn "displays" your content as decided upon in the browser protocols, the web standards of W3C, enhancing the accessability of the content.   
Formatting your documents using HTML allows a browser to interpert your content directly, which in turn "displays" your content as decided upon in the browser protocols, the web standards of W3C, enhancing the accessability of the content.   
Line 14: Line 16:
==See also==
==See also==
[[CSS (Wordhole)]], [[Accessibility (Wordhole)]]
[[CSS (Wordhole)]], [[Accessibility (Wordhole)]]
[[Category:Wordhole]]

Latest revision as of 16:48, 11 October 2023

Definition

HTML (or Hyper Text Markup Language) is a programming language used to display hypertext in a webbrowser, using .html files. Hypertext is a method that allows cross-referencing content by the usage of links. HTML consists of tags, such as:

<h1>I'm a heading</h1>
<a href="https://example.com">Superlink</a>

Formatting your documents using HTML allows a browser to interpert your content directly, which in turn "displays" your content as decided upon in the browser protocols, the web standards of W3C, enhancing the accessability of the content.

HTML is only meant to **structure** your content. Any aesthetics can be applied using CSS, and additional interaction can be created using Javascript.

Images and links

See also

CSS (Wordhole), Accessibility (Wordhole)