mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-28 10:16:27 +00:00
25 lines
553 B
HTML
25 lines
553 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="zh-CN">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<link rel="stylesheet" href="character.css">
|
||
|
<style>
|
||
|
body {
|
||
|
background-color: lightgreen;
|
||
|
}
|
||
|
@media only screen and (orientation: landscape) {
|
||
|
body {
|
||
|
background-color: lightblue;
|
||
|
}
|
||
|
}
|
||
|
</style>
|
||
|
<title>test</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="content" style="background-image:url(w.jpg)">
|
||
|
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|