32 lines
780 B
HTML
32 lines
780 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Sample Site</title>
|
|
<style>
|
|
body {
|
|
font-family: system-ui, sans-serif;
|
|
display: grid;
|
|
place-items: center;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
background: linear-gradient(135deg, #dbeafe, #fef3c7);
|
|
}
|
|
main {
|
|
text-align: center;
|
|
padding: 32px;
|
|
border-radius: 20px;
|
|
background: white;
|
|
box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Hello Web2App</h1>
|
|
<p>这是一个用于测试打包流程的示例静态页面。</p>
|
|
</main>
|
|
</body>
|
|
</html>
|