RoboGame2020/select.html
2021-10-30 23:20:58 +08:00

54 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<style type="text/css">
body {
background-image: url("images/select-bg.png");
overflow: hidden;
height: 100%;
}
#a {
position: absolute;
top: 0px;
left: 0px;
width: 512px;
height: 300px;
}
#b {
position: absolute;
top: 0px;
left: 512px;
width: 512px;
height: 300px;
}
#c {
position: absolute;
top: 300px;
left: 0px;
width: 512px;
height: 300px;
}
#d {
position: absolute;
top: 300px;
left: 512px;
width: 512px;
height: 300px;
}
</style>
<title>PiApp</title>
</head>
<body>
<a href="settings.html" id="a"></a>
<a href="settings.html" id="b"></a>
<a href="settings.html" id="c"></a>
<a href="settings.html" id="d"></a>
</body>
</html>