首页:修订间差异
跳到导航
跳到搜索
无编辑摘要 标签:已被回退 |
无编辑摘要 |
||
第1行: | 第1行: | ||
<! | <!DOCTYPE html> | ||
< | <html lang="en"> | ||
< | <head> | ||
<meta charset="UTF-8"> | |||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
<title>Document</title> | |||
</head> | |||
<style> | |||
* { | |||
margin: 0; | |||
padding: 0; | |||
} | |||
.page { | |||
width: 1000px; | |||
margin: auto; | |||
} | |||
{ | .header { | ||
width: 100%; | |||
{ | height: 300px; | ||
background-image: url(./img/header.jpg); | |||
background-repeat: no-repeat; | |||
background-size: 100%; | |||
cursor: pointer; | |||
} | |||
< | |||
< | .main { | ||
width: 100%; | |||
display: flex; | |||
justify-content: space-between; | |||
{ | } | ||
< | |||
.left { | |||
width: 68%; | |||
height: 800px; | |||
background-image: url(./img/left.jpg); | |||
background-repeat: no-repeat; | |||
background-size: 100% 100%; | |||
} | |||
.right { | |||
width: 27%; | |||
} | |||
.right_box { | |||
height: 207px; | |||
background-image: url(./img/right.jpg); | |||
background-repeat: no-repeat; | |||
background-size: 100% 100%; | |||
margin-bottom: 30px; | |||
} | |||
</style> | |||
<body> | |||
<div class="page"> | |||
<div class="header" onclick="qqq()"> | |||
</div> | |||
<div class="main"> | |||
<div class="left"> | |||
</div> | |||
<div class="right"> | |||
<div class="right_box"> | |||
</div> | |||
<div class="right_box"> | |||
</div> | |||
<div class="right_box"> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</body> | |||
<script> | |||
function qqq() { | |||
location.href = "https://turchine.com/turchinewiki/index.php/" | |||
} | |||
</script> | |||
</html> |
2023年11月22日 (三) 04:07的版本
<!DOCTYPE html> <html lang="en">
<head>
<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title>
</head>
<style>
* { margin: 0; padding: 0; }
.page { width: 1000px; margin: auto; }
.header { width: 100%; height: 300px; background-image: url(./img/header.jpg); background-repeat: no-repeat; background-size: 100%; cursor: pointer; }
.main { width: 100%; display: flex; justify-content: space-between; }
.left { width: 68%; height: 800px; background-image: url(./img/left.jpg); background-repeat: no-repeat; background-size: 100% 100%; }
.right { width: 27%; }
.right_box { height: 207px; background-image: url(./img/right.jpg); background-repeat: no-repeat; background-size: 100% 100%; margin-bottom: 30px; }
</style>
<body>
</body> <script>
function qqq() { location.href = "https://turchine.com/turchinewiki/index.php/" }
</script>
</html>