Skip to content

Commit fd41e37

Browse files
committed
updated HTML cheatsheeet
1 parent 5da29a4 commit fd41e37

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

ferienpass/cheatsheets/html.de.md

+19
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ Weitere Information zu HTML findet ihr hier:
77

88
* http://de.selfhtml.org/
99

10+
## Struktur
11+
12+
```html
13+
<html>
14+
<head>
15+
<title>Browser Titel</title>
16+
</head>
17+
<body>
18+
<!-- Browser Inhalt, hier kommen die Tags hin -->
19+
</body>
20+
</html>
21+
```
22+
23+
## Kommentare
24+
25+
```html
26+
<!-- Ein HTML Kommentar, dieser wird nicht im Browser Inhalt angezeigt -->
27+
```
28+
1029
## Überschriften
1130

1231
```html

0 commit comments

Comments
 (0)