CSS Tutorial
CSS (Cascading Style Sheets) är ett språk som används för att styla HTML-element. Här är en enkel guide om hur du använder CSS:
<h1 style="color: red;">Rubrik</h1>
.<style>
-element i <head>
-avsnittet i ditt HTML-dokument. T.ex:<head>
<style>
h1 {
color: blue;
}
</style>
</head>
<link>
-elementet. T.ex:<head>
<link rel="stylesheet" href="stil.css">
</head>
<header>
, <main>
, <footer>
) för att ge struktur och mening./* Inline-stil */
h1 {
color: red;
}
/* Inbäddad stilmall */
<style>
h2 {
color: blue;
}
</style>
/* Extern stilmall */
.huvudtext {
font-family: Arial;
font-size: 16px;
}