-
Notifications
You must be signed in to change notification settings - Fork 17
HTML landing page draft
HTML (HyperText Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content. Other technologies besides HTML are generally used to describe a web page's appearance/presentation (CSS) or functionality/behavior (JavaScript).
...
Our HTML Learning Area features multiple modules that teach HTML from the ground up — no previous knowledge required.
-
Introduction to HTML: This module sets the stage, getting you used to important concepts and syntax such as looking at applying HTML to text, how to create hyperlinks, and how to use HTML to structure a web page.
-
Multimedia and embedding: This module explores how to use HTML to include multimedia in your web pages, including the different ways that images can be included, and how to embed video, audio, and even entire other webpages.
-
...
Something about guides.
-
CORS settings attributes: Some HTML elements that provide support for CORS, such as
<img>
or<video>
, have a crossorigin attribute (crossOrigin property), which lets you configure the CORS requests for the element's fetched data.
HTML consists of elements, each of which may be modified by some number of attributes. HTML documents are connected to each other with links.
-
<a>
: The HTML element (or anchor element), along with its href attribute, creates a hyperlink to other web pages, files, locations within the same page, email addresses, or any other URL. -
<abbr>
: The HTML Abbreviation element () represents an abbreviation or acronym; the optional title attribute can provide an expansion or description for the abbreviation. -
...
Global attributes are attributes common to all HTML elements; they can be used on all elements, though they may have no effect on some elements.
-
accesskey
: Provides a hint for generating a keyboard shortcut for the current element. This attribute consists of a space-separated list of characters. The browser should use the first one that exists on the computer keyboard layout. -
...