Skip to content

Instantly share code, notes, and snippets.

View W3Schule's full-sized avatar

Phil Hedtmann W3Schule

View GitHub Profile
@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_bild_alt_beispiel.html
Created February 7, 2018 20:31
HTML Bild alt Beispiel
<img src="w3schule.jpg" alt="W3Schule Logo">
@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_src_beispiel.html
Created February 7, 2018 19:57
HTML Bild src Beispiel
<img src="w3schule.jpg">
@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_p_element_beispiel.html
Created January 24, 2018 17:17
HTML Paragraph Element Beispiel
<p>Dieses ist ein Paragraph.</p>
@W3Schule
W3Schule / html_ueberschrift_h1_element_beispiel.html
Created January 24, 2018 17:13
HTML Überschrift Element H1 Beispiel
<h1>Dieses ist eine Überschrift</h1>
@W3Schule
W3Schule / html_body_element_beispiel.html
Created January 24, 2018 16:51
HTML <body> Element Beispiel
<body>
<h1>Dieses ist eine Überschrift</h1>
<p>Dieses ist ein Paragraph.</p>
</body>
@W3Schule
W3Schule / html_html_element_beispiel.html
Created January 24, 2018 16:36
HTML <html> Element Beispiel
<html>
<head>
<title>Seiten Titel</title>
</head>
<body>
<h1>Dieses ist eine Überschrift</h1>
<p>Dieses ist ein Paragraph.</p>
</body>
@W3Schule
W3Schule / html_bild_beispiel.html
Created January 23, 2018 20:14
HTML Bild Beispiel
<img src="w3schule.jpg" alt="W3Schule.de" width="151" height="31">