Files
studycode/web_test/test2/news.html
2025-12-03 23:08:39 +08:00

27 lines
797 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>新闻</title>
<style>
p {
letter-spacing: 6px;
/* 字符间距 */
line-height: 2em;
/* 行高 */
text-indent: 2em;
/* 首行缩进 */
word-spacing: 10px;
/* 单词间距 */
}
</style>
</head>
<body>
<p>昨天上午,南京国际博览中心金陵会议中心内欢声笑语,春意盎然,省委、省政府在这里举行春节团拜会。 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>