71 lines
1.6 KiB
HTML
71 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Zip Import Test</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 40px;
|
|
color: #1f2933;
|
|
}
|
|
.card {
|
|
max-width: 640px;
|
|
padding: 24px;
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 12px;
|
|
background: #ffffff;
|
|
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
|
|
}
|
|
h1 {
|
|
margin: 0 0 12px;
|
|
font-size: 28px;
|
|
}
|
|
p {
|
|
margin: 0 0 12px;
|
|
line-height: 1.5;
|
|
}
|
|
.badge {
|
|
display: inline-block;
|
|
padding: 4px 10px;
|
|
border-radius: 999px;
|
|
background: #e0f2fe;
|
|
color: #0369a1;
|
|
font-size: 12px;
|
|
letter-spacing: 0.03em;
|
|
text-transform: uppercase;
|
|
}
|
|
.meta {
|
|
margin-top: 16px;
|
|
font-size: 14px;
|
|
color: #64748b;
|
|
}
|
|
button {
|
|
margin-top: 12px;
|
|
padding: 10px 14px;
|
|
border: none;
|
|
border-radius: 8px;
|
|
background: #1d4ed8;
|
|
color: white;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
button:hover {
|
|
background: #1e40af;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<span class="badge">Zip Import</span>
|
|
<h1>It works.</h1>
|
|
<p>This page is served from a ZIP import test project.</p>
|
|
<p id="status">Status: waiting for JS...</p>
|
|
<button id="action">Click me</button>
|
|
<div class="meta" id="meta"></div>
|
|
</div>
|
|
<script src="./app.js"></script>
|
|
</body>
|
|
</html>
|