Premium Partner

HTML

HTML tags

HTML tags

Invisible

Invisible

Set of flashcards Details

Flashcards 24
Language Deutsch
Category Computer Science
Level Other
Created / Updated 21.01.2015 / 22.04.2023
Licencing Not defined
Weblink
https://card2brain.ch/box/html1
Embed
<iframe src="https://card2brain.ch/box/html1/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>

HTML Tags

<tagname>content</tagname>

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.

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

HTML Headings

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

HTML Paragraphs

HTML paragraphs are defined with the <p> tag:

HTML Links

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

HTML Images

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

The lang Attribute

<html lang="en-US">