10.08.2005, 22:59
Hallo Bonzai,
klar geht das auch extern. Das kannst Du mit dem Win-Editor erledigen. Das externe CSS sieht so aus:
Es ist also eine reine Textdatei ohne Die Tags wie
<html>
<head>
<body>
<style>
Das CSS speicherst Du als mein.css
Im Head einer jeden Website kommt dann der Link rein, der auf das externe CSS verweist, also:
<link rel=stylesheet href="http://www.meineurl.de/mein.css" type="text/css">
Das war es schon, siehe auch hier: :wink:
http://www.juergens-workshops.de/tutoria...seinbinden
Gruß
Jürgen
klar geht das auch extern. Das kannst Du mit dem Win-Editor erledigen. Das externe CSS sieht so aus:
Code:
body {
background-color: #000000;
font-family: Verdana, Arial;
font-size: 12px;
color: #ffffff;
}
.content {
width: 95%;
}
.content td {
border: 1px solid #ffffff;
border-collapse: collapse;
width: 50%;
padding: 3px;
font-size: 11px;
color: #ffffff;
font-weight: bold;
}
.content td a {
color: #ff9900;
text-decoration: none;
}
.content td a:hover {
color: #ffffcc;
text-decoration: underline;
}
.footer {
width: 90%;
}
.footer td {
border: 1px solid #ffffff;
border-collapse: collapse;
width: 50%;
padding: 3px;
font-size: 11px;
color: #ffffff;
font-weight: bold;
}
.footer td a {
color: #ffffff;
text-decoration: none;
}
.footer td a:hover {
color: #ffffff;
text-decoration: underline;
}
Es ist also eine reine Textdatei ohne Die Tags wie
<html>
<head>
<body>
<style>
Das CSS speicherst Du als mein.css
Im Head einer jeden Website kommt dann der Link rein, der auf das externe CSS verweist, also:
<link rel=stylesheet href="http://www.meineurl.de/mein.css" type="text/css">
Das war es schon, siehe auch hier: :wink:
http://www.juergens-workshops.de/tutoria...seinbinden
Gruß
Jürgen