-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (82 loc) · 2.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<title>ICS Achim</title>
<meta name="description" content="VFH ICS WEBSTART" />
<meta name="author" content="Thomas Onken" />
<link rel="stylesheet" type="text/css" href="./css/style.css" />
<style>
/* Hier werden Farben festgelegt */
/*
h1 {
color: GREEN;
}
h2 {
color: RED;
}
*/
</style>
</head>
<body>
<header>
<nav>
<ul class="kopfzeile">
<li><a href="index.html">Startseite</a></li>
<li><a href="uber-uns.html">Über uns</a></li>
<li><a href="dienstleistungen.html">Dienstleistungen</a></li>
<li><a href="kontakt.html">Kontakt</a></li>
</ul>
<ol>
<li>eins</li>
<li>zwei</li>
<li>drei</li>
<ol>
</nav>
</header>
<section>
<h5 id="einleitung" class="headline farbverlauf">Website über meinen Hund</h5>
<textarea rows="4" cols="50" class="bild-links">
Eine Textarea
</textarea>
<h2 class="links-abstand">Name: Kurumi (jap: Wallnuss)</h2>
<img src="./images/kuyoung.jpeg"
width="800px"
height="980px"
alt="Der nachdenkliche Hund"
class="links-abstand"
style="position: relative; top: 5px;"
>
</section>
<textarea rows="4"
cols="50"
style="position: relative; top: 15px;"
class="comment"
>
Eine Textarea
</textarea>
<br>
<script src="./js/main.js"></script>
<!-- Experimentierfunktionen
<p>Textabsatz mit 15 pixeln entfernung von border left und schwarzer unterstreichung & fett & grauhintergrund</p>
<h3>DIV- und SPAN-Elemente</h3>
<div style="border-color: #728ff9; text-align: left;">
Erstes <span>div-element</span>.
</div>
<div style="border-color: #be54fa; text-align: center;">
Zweites <span>div-element</span>
</div>
<div style="border-color: #f7c53d; text-align: right;">
Drittes <span>div-element</span>
</div>
<div class="farbverlauf bigger">
Farbverlaufstext1
</div>
<div class="farbverlauf">
Farbverlaufstext2
</div>
<h1 class="hinweis"> Hinweis1 </h1>
<h2 class="hinweis"> Hinweis2 </h2>
-->
</body>
</html>