Files
ClassContent/历届学生/zheng-yuqing/项目练习/学生项目/在包河/index.html
2024-09-27 02:06:13 +08:00

47 lines
1.3 KiB
HTML

<!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>在包河</title>
<link rel="stylesheet" href="./css/clear.css">
<link rel="stylesheet" href="./css/public.css">
<link rel="stylesheet" href="./css/index.css">
<script>
window.onload = function () {
getRem(750, 100)
};
window.onresize = function () {
getRem(750, 100)
};
function getRem(pwidth, prem) {
var html = document.getElementsByTagName("html")[0];
var oWidth = document.body.clientWidth || document.documentElement.clientWidth;
html.style.fontSize = oWidth / pwidth * prem + "px";
}
</script>
</head>
<body>
<ul class="header">
<li>包河radio</li>
<li class="active">包河TV</li>
<li>融媒直播</li>
</ul>
<div class="content">
<ul>
<li>安徽卫视</li>
<li>经济生活</li>
<li>影视频道</li>
<li>综艺频道</li>
<li>科教频道</li>
<li>人物频道</li>
<li>国际频道</li>
</ul>
</div>
<div class="footer"></div>
</body>
</html>