Files
Course/Web/test2/product.html
2025-11-07 18:39:29 +08:00

39 lines
1.3 KiB
HTML

<!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>