Skip to content

Instantly share code, notes, and snippets.

View W3Schule's full-sized avatar

Phil Hedtmann W3Schule

View GitHub Profile
@W3Schule
W3Schule / html_p_element_beispiel.html
Created January 24, 2018 17:17
HTML Paragraph Element Beispiel
<p>Dieses ist ein Paragraph.</p>
@W3Schule
W3Schule / html_open_tag_element_beispiel.html
Created January 26, 2018 21:59
HTML Open End Tag Beispiel
<!DOCTYPE html>
<html>
<head>
<title>Seiten Titel</title>
</head>
<body>
<p>Dieses ist eine Paragraph ohne End Tag
<p>Dieses ist ein weiterer Paragraph ohne End Tag
@W3Schule
W3Schule / html_bild_src_beispiel.html
Created February 7, 2018 19:57
HTML Bild src Beispiel
<img src="w3schule.jpg">
@W3Schule
W3Schule / html_bild_height_width_beispiel.html
Created February 7, 2018 20:02
HTML Bild height und width
<img src="w3schule.jpg" width="151" height="31">
@W3Schule
W3Schule / html_bild_alt_beispiel.html
Created February 7, 2018 20:31
HTML Bild alt Beispiel
<img src="w3schule.jpg" alt="W3Schule Logo">
@W3Schule
W3Schule / html_element_style_beispiel.html
Created February 7, 2018 21:37
HTML Element style Beispiel
<p style="color:red">Ich bin ein Paragraph in rot.</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>
@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_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_ohne_quotes_beispiel.html
Created February 7, 2018 23:14
HTML title Attribut ohne Anführungszeichen
<p title=Über W3Schule>