feat(*): 代码仓库初始化

This commit is contained in:
2025-11-07 18:39:29 +08:00
commit b1aeb6b39b
36 changed files with 1700 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p {
color: #cc0000;
font-size: 32px;
}
#tit {
background-color: gray;
}
.tit {
text-align: center;
font-style: italic;
font-family: "宋体";
}
a:link {
text-decoration: none;
}
a:hover {
color: red;
font-size: 24px;
}
a:active {
color: rgb(0, 204, 0);
}
a:after {
color: #9900ff;
}
[title] {
font-weight: bold;
}
</style>
</head>
<body>
<p id="tit" class="tit" title="tit">一个段落</p>
<a href="https://www.runoob.com/" target="_blank">点击跳转到菜鸟教程</a>
</body>
</html>

23
Web/test2/news.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>新闻</title>
<style>
p {
letter-spacing: 6px;
line-height: 2em;
text-indent: 10px;
}
</style>
</head>
<body>
<p>&nbsp;&nbsp;昨天上午,南京国际博览中心金陵会议中心内欢声笑语,春意盎然,省委、省政府在这里举行春节团拜会。
Yesterday morning, the Jinling Conference Center of Nanjing International Expo Center was filled with laughter
and joy, and the provincial party committee and government held a Spring Festival gathering here.</p>
</body>
</html>

39
Web/test2/product.html Normal file
View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p {
text-decoration: underline;
text-transform: capitalize;
}
#sc {
text-decoration: line-through;
text-transform: lowercase;
}
.gz {
text-decoration: overline;
text-transform: uppercase;
}
</style>
</head>
<body>
<h3>设置文字装饰及大小写转换</h3>
<p>Chongqing, abbreviated as "Yu", is a municipality directly under the central and western regions of China, famous
for its mountainous city characteristics, hotpot culture, and the beautiful scenery of the confluence of the
Yangtze River and Jialing River.</p>
<p id="sc">Sichuan, abbreviated as "Chuan" or "Shu", is located in southwestern China and is a province known for
its
magnificent natural scenery, rich cultural heritage, and spicy cuisine.</p>
<p class="gz">Guizhou, abbreviated as "Qian" or "Gui", is located in southwestern China and is a province renowned
for its
diverse ethnic cultures, spectacular karst landforms, and beautiful natural landscapes.</p>
</body>
</html>