Vous n’êtes pas connecté.
TrOuble
God






Citation de "churchi"
Poste mal das was in der *.html und in der *.css Datei steht.
|
|
Code source |
1 2 3 4 5 6 7 8 9 10 |
<html>
<head>
<title>Name</title>
<link rel="stylesheet" type="all" href="style.css">
</head>
<body>
oben.htm
</body>
</html>
|
|
|
Code source |
1 2 3 4 5 |
body {
font-family: Arial;
font-size: large;
text-align: justify;
}
|
|
|
Code source |
1 2 3 4 5 6 7 8 9 10 11 |
<html> <head> <title>Name</title> <link rel="stylesheet" type="all" href="style.css"> </head> <body> oben.htm <h1>oben.htm</h1> </body> </html> |
|
|
Code source |
1 2 3 4 5 6 |
h1
{
font-family: Arial;
font-size: large;
text-align: justify;
}
|
|
|
Code source |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<html>
<head>
<title>Titel der Datei</title>
<style type="text/css">
<!--
a:link { color:#EE0000; text-decoration:none; font-weight:bold; }
a:visited { color:#EEAAAA; text-decoration:none; font-weight:bold; }
a:hover { color:#EE0000; text-decoration:none; background-color:#FFFF99; font-weight:bold; }
a:active { color:#0000EE; background-color:#FFFF99; font-weight:bold; }
body { font-family:Arial,sans-serif; font-size:12pt; }
-->
</style>
</head>
|
TrOuble
God





|
|
Code source |
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 |
BODY {
background: #999999;
}
a:link{
color : #000000;
text-decoration : none;
}
a:visited{
color : #000000;
text-decoration : none;
}
a:hover{
text-decoration : none;
}
a:active{
text-decoration : none;
}
a.SB_inlink:link {
color : #000000;
text-decoration : none;
}
a.SB_inlink:visited {
text-decoration : none;
}
a.SB_inlink:active {
text-decoration : none;
}
a.SB_inlink:hover {
text-decoration : none;
|
-