Files
Simple_Clang_HTTP_Server/index.html
2026-08-14 04:57:34 +08:00

41 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>最小HTTP服务器</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #f5f5f5;
}
h1 {
color: #333;
text-align: center;
}
.info {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<div class="info">
<h1>🎉 Hello from C HTTP Server!</h1>
<p>这是一个用C语言编写的最小HTTP服务器</p>
<p><strong>特性:</strong></p>
<ul>
<li>使用原生Socket API</li>
<li>支持Windows、Linux平台</li>
<li>从文件读取HTML内容</li>
<li>正确处理UTF-8编码</li>
</ul>
</div>
</body>
</html>