3 changed files with 33 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||||
|
body.leto { |
||||
|
background-color: orange; |
||||
|
} |
||||
|
|
||||
|
body.zima { |
||||
|
background-color: paleturquoise; |
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<meta charset="UTF-8"> |
||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
|
<title>Léto</title> |
||||
|
<link rel="stylesheet" href="css/style.css"> |
||||
|
</head> |
||||
|
<body class="leto"> |
||||
|
<h1>Léto</h1> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,13 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<meta charset="UTF-8"> |
||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
|
<title>Zima</title> |
||||
|
<link rel="stylesheet" href="css/style.css"> |
||||
|
</head> |
||||
|
<body class="zima"> |
||||
|
<h1>Zima</h1> |
||||
|
</body> |
||||
|
</html> |
Loading…
Reference in new issue