Difference between revisions of "HTML: HyperText Markup Language"

From Parallel Library Services
Jump to navigation Jump to search
Line 1: Line 1:
https://developer.mozilla.org/en-US/docs/Web/HTML
https://developer.mozilla.org/en-US/docs/Web/HTML


The Hyper Text Markup Language, or HTML, is the building block of the Web. It uses "markup" to annotate text, images, and other content for display and is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.
The HyperText Markup Language, or HTML, is the building block of the Web. It uses "markup" to annotate text, images, and other content for display and is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.


HTML markup includes special "elements" such as  
HTML markup includes special "elements" such as
<syntaxhighlight lang="HTML">
 
<pre>
<head>, <title>, <body>, <header>, <footer>, <article>, <section>, <p>, <div>, <span>, <img>, <aside>, <audio>, <canvas>, <datalist>, <details>, <embed>, <nav>, <output>, <progress>, <video>, <ul>, <ol>, <li>  
<head>, <title>, <body>, <header>, <footer>, <article>, <section>, <p>, <div>, <span>, <img>, <aside>, <audio>, <canvas>, <datalist>, <details>, <embed>, <nav>, <output>, <progress>, <video>, <ul>, <ol>, <li>  
</syntaxhighlight>
</pre>
 
and many others.
and many others.



Revision as of 14:55, 11 October 2021

https://developer.mozilla.org/en-US/docs/Web/HTML

The HyperText Markup Language, or HTML, is the building block of the Web. It uses "markup" to annotate text, images, and other content for display and is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.

HTML markup includes special "elements" such as

<head>, <title>, <body>, <header>, <footer>, <article>, <section>, <p>, <div>, <span>, <img>, <aside>, <audio>, <canvas>, <datalist>, <details>, <embed>, <nav>, <output>, <progress>, <video>, <ul>, <ol>, <li> 

and many others.

An HTML element is set off from other text in a document by "tags", which consist of the element name surrounded by "<" and ">". The name of an element inside a tag is case insensitive. That is, it can be written in uppercase, lowercase, or a mixture. For example, the <title> tag can be written as <Title>, <TITLE>, or in any other way.