41 lines
737 B
HTML
41 lines
737 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-Hant">
|
|
|
|
<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;
|
|
}
|
|
|
|
.activation-container {
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
|
|
p {
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="activation-container">
|
|
<h1>居民開通</h1>
|
|
<p>這裡是居民開通的頁面內容。</p>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |