<head>
notiert man
<link rel="stylesheet" href="mydesign.css" />
<head>
<title>Seitentitel</title>
<link rel="stylesheet" href="layout.css" />
<link rel="stylesheet" href="type.css" />
<link rel="stylesheet" href="colors.css" />
</head>
<head>
der HTML-Datei.
<html>
<head>
<title>Seitentitel</title>
<style>
CSS-Regeln
</style>
</head>
<body> … </body>
</html>
<p style="CSS-Regeln">…</p>
Möglichkeit 1 | — immer super |
Möglichkeit 2 | — fast nie gut |
Möglichkeit 3 | — immer schlecht |
p {
color: red;
}
p {
color: red;
}
p {
color: red;
font-size: 20px;
font-style: italic;
}
p {
color: red;
font-size: 12px;
font-style: italic;
}
h1 {
color: blue;
font-size: 20px;
}
grün | #4CD964 |
orange | #FF9500 |
rot | #FF2D55 |
blau | #007AFF |
margin-left: 100px;
margin-bottom: 30px;
margin-top: 5px;