Skip to content

Instantly share code, notes, and snippets.

View W3Schule's full-sized avatar

Phil Hedtmann W3Schule

View GitHub Profile
@W3Schule
W3Schule / html_head_element_beispiel.html
Created July 16, 2018 12:52
HTML Head Element Beispiel
<!DOCTYPE html>
<html>
<head>
<title>Mein erstes HTML</title>
<meta charset="UTF-8">
</head>
<body>
@W3Schule
W3Schule / html_horizontale_regeln_beispiel.html
Created July 16, 2018 12:33
Horizontale Regeln Trenner Attribut
<h1>Dies ist eine H1 Überschrift</h1>
<p>Dies ist ein Paragraph(Text).</p>
<hr>
<h2>Dies ist eine H2 Überschrift</h2>
<p>Dies ist ein weiterer Paragraph(Text).</p>
<hr>
@W3Schule
W3Schule / html_ueberschriften_attribut_groesse_beispiel.html
Created March 3, 2018 17:40
HTML Überschriften Attribut Größe
<h1 style="font-size:80px;">H1 Überschrift</h1>
<h1>H1 Überschrift</h1>
<h2>H2 Überschrift</h2>
<h3>H3 Überschrift</h3>
<h4>H4 Überschrift</h4>
<h5>H5 Überschrift</h5>
<h6>H6 Überschrift</h6>
@W3Schule
W3Schule / html_title_attribut_single_in_doppelte_quotes_beispiel.html
Created February 7, 2018 23:32
HTML title Attribut doppelte Anführungszeichen mit einfachen Anführungszeichen im Wert
<p title="Phil 'Tortuga' Hedtmann">
@W3Schule
W3Schule / html_title_attribut_doppelte_in_single_quotes_beispiel.html
Created February 7, 2018 23:29
HTML title Attribut einfache Anführungszeichen mit doppelten Anführungszeichen im Wert
<p title='Phil "Tortuga" Hedtmann'>
@W3Schule
W3Schule / html_title_attribut_ohne_quotes_beispiel.html
Created February 7, 2018 23:14
HTML title Attribut ohne Anführungszeichen
<p title=Über W3Schule>
@W3Schule
W3Schule / html_href_attribut_ohne_quotes_beispiel.html
Created February 7, 2018 22:36
HTML href Attribut ohne Anführungszeichen
<a href=https://www.w3schule.de>
@W3Schule
W3Schule / html_title_attribut_beispiel.html
Created February 7, 2018 22:13
HTML title Attribut Beispiel
<p title="Ich bin ein Tooltip">
Ich bin ein Pragraph mit title Attribut.
</p>
@W3Schule
W3Schule / html_lang_attribut_beispiel.html
Created February 7, 2018 21:51
HTML lang Attribut Beispiel
<!DOCTYPE html>
<html lang="de-DE">
<body>
...
</body>
</html>