27 lines
545 B
HTML
27 lines
545 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
@media screen and (min-width: 680px) and (max-width: 980px) {
|
|
body {
|
|
background-color: lightgreen;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 981px) and (max-width: 1200px) {
|
|
body {
|
|
background-color: yellow;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
</body>
|
|
|
|
</html> |