🔗CSS einbinden
Wo kann CSS definiert werden?
<link href="css/style.css" rel="stylesheet"><style>
.navi { color: green; }
</style> <p style="font-weight: bold;">CSS-Datei einbinden
🛠️ Praxis
body {
background-color: #fbf8e2;
font-family: Arial, sans-serif;
margin: 0;
}
header, main, footer {
padding: 20px;
}Last updated
Was this helpful?