agent-Specialization/users/jojo/project/test_modify/test_html.html
2025-11-14 16:44:12 +08:00

45 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>测试页面</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #ff6b6b;
text-align: center;
font-size: 2.5em;
margin-bottom: 30px;
}
.content {
line-height: 1.6;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>这是修改后的标题</h1>
<div class="content">
<p>这是修改后的第一段内容HTML文件修改功能测试成功</p>
<p>这是第二段测试内容。</p>
<p>这是第三段测试内容。</p>
</div>
</div>
</body>
</html>