Lernkarten

Thorbjörn Tasche
Karten 24 Karten
Lernende 6 Lernende
Sprache Deutsch
Stufe Andere
Erstellt / Aktualisiert 21.01.2015 / 08.01.2021
Lizenzierung Keine Angabe
Weblink
Einbinden
0 Exakte Antworten 24 Text Antworten 0 Multiple Choice Antworten
Fenster schliessen

HTML Tags

<tagname>content</tagname>

Fenster schliessen

The <!DOCTYPE> Declaration

<!doctype html>

The <!DOCTYPE> declaration helps the browser to display a web page correctly.

There are different document types on the web.

To display a document correctly, the browser must know both type and version.

Fenster schliessen

HTML Documents

All HTML documents must start with a type declaration: <!DOCTYPE html>.

The HTML document itself begins with <html> and ends with </html>.

The visible part of the HTML document is between <body> and </body>.

Fenster schliessen

HTML Headings

HTML headings are defined with the <h1> to <h6> tags:

Fenster schliessen

HTML Paragraphs

HTML paragraphs are defined with the <p> tag:

Fenster schliessen

HTML Links

<a href="http://www.w3schools.com">This is a link</a>

Fenster schliessen

HTML Images

<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">

Fenster schliessen

The lang Attribute

<html lang="en-US">