This commit is contained in:
2025-10-06 00:31:28 +08:00
parent 8750fb6a9c
commit 6a0c4b2c04
14 changed files with 161 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章</title>
<!-- 方式二:内部样式 -->
<style>
/* 元素选择器 */
/* span{
color: gray;
} */
/* 类选择器 */
/* .cls{
color: #b2b2b2;
} */
/* id选择器 */
#time{
color: red;
}
</style>
<!-- 方式三:外部样式 -->
<!-- <link rel="stylesheet" href="css/news.css"> -->
</head>
<body>
<!-- 定义一个标题, 标题内容:【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章 -->
<h1>【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章</h1>
<!-- 定义一个超链接,里面展示,央视网 -->
<!-- a 超链接标签:
href 属性:超链接地址
target 属性:超链接打开方式
_self当前窗口打开
_blank新窗口打开
默认为_self
-->
<a href="https://www.cctv.com/" target="_blank">央视网</a>
<!-- 方式一:行内样式 -->
<!-- <span style="color: gray;">2024年05月15日 20:07</span> -->
<span class="cls" id="time">2024年05月15日 20:07</span>
<span>000000</span>
</body>
</html>