<!DOCTYPE html>
<html lang="ch-ZH">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content=5;url="https://edu.magedu.com">
<title>网络安全C11期课程</title>
<style>
a {
text-decoration: none; /* 去掉下划线 */
color: white; /* 字体颜色 */
font-family: 'Arial', sans-serif; /* 字体 */
font-size: 24px; /* 字体大小 */
font-weight: bold; /* 加粗 */
}
h1 {
margin: 0 20px; /* 上下为0,左右20px */
}
</style>
</head>
<!-- (1)网页标题:网络安全C11期课程 -->
<!-- (2)网页背景颜色:蓝色 -->
<!-- (3)网页中含有一个超链接,点击即可跳转至百度 -->
<!-- (4)如果在网页中不做任何操作,5秒后跳转至马哥教育官网 -->
<body bgcolor="#00aaff">
<a href="https://www.baidu.com/">
<h1>超链接</h1>
</a>
</body>
</html>