-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (31 loc) · 1.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
<title>HTML-CSS-RWD</title>
</head>
<body>
<h1 class="ueberschrift">HTML - Die Web Sprache </h1>
<!-- 3 Container, 3 Überschriften (Motivation, Über mich, Ziel vom Kurs) -->
<div id="main-container">
<h1 id="headline">Test</h1>
<p id="test">Hallo das ist ein test</p>
<p>Hallo das ist die Zweite Zeile</p>
</div>
<a href="https://ppedv.de">Klick mich an</a>
<a href="zweite.html">Zur zweiten Seite navigieren</a>
<a href="https://www.google.de">Hier gehts zu Google</a>
<!-- Bild hinzufügen -->
<img src="Katze.jpg">
<p>Ich habe 10€</p>
<p>Ich habe 10€</p>
<h1>Überschrift 1</h1>
<h2>Überschrift 2</h2>
<h3>Überschrift 3</h3>
<h4>Überschrift 4</h4>
<h5>Überschrift 5</h5>
<h6>Überschrift 6</h6>
</body>
</html>