Ja det internettet, det internettet, ikke til å bli klok på.
Da kan du css nå ikke sant?
- lag en fil som heter faangoogle.css
I den skal det stå:
h1 { color: blue; }
h2 { color: blue; }
h3 { color: blue; }
body {
color: black;
background-color: white;
text-align: center;
margin-left: 25%;
margin-right: 25%;
}
.style1 {
font-size: 9px;
text-align: left;
}
- så limer du inn i head:
<link rel="stylesheet" href="css/stylesheet.css" type="text/css" />
Du tar bort fra head:
<style type="text/css">
h1 { color: blue; }
h2 { color: blue; }
h3 { color: blue; }
body {
color: black;
background-color: white;
text-align: center;
margin-left: 25%;
margin-right: 25%;
}
.style1 {
font-size: 9px;
text-align: left;
}
</style>
Og vips så gjøre du alle forandringer i en fil, nemlig faangoogle.css, istedet for på hver side. (nå har du jo bare en side da, men hvis du hadde hatt 4...)
Capiche?