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

45 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>
<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>
<link rel="stylesheet" href="./css/clear.css">
<link rel="stylesheet" href="./css/public.css">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<ul class="header">
<li>包河Radio</li>
<li class="active">
包河Tv
</li>
<li>融媒直播</li>
</ul>
<div class="content">
<ul class="new_list">
<li>安徽卫视</li>
<li>安徽卫视</li>
<li>安徽卫视</li>
<li>安徽卫视</li>
<li>安徽卫视</li>
</ul>
</div>
<div class="footer"></div>
</body>
</html>