Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.

HTML landing page draft

wbamberg edited this page Oct 1, 2019 · 7 revisions

HTML

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).

...

Learn HTML

  • 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.

  • ...

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.

  • ...

Reference

  • HTML elements: This page lists all the HTML elements, which are created using tags.

  • HTML global attributes: 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.