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

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>