change port

This commit is contained in:
2026-02-05 13:21:48 +08:00
parent d5b58148d2
commit 7079381191
2 changed files with 1 additions and 1 deletions

62
html/index.html Normal file
View File

@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hi bb</title>
<style>
/* Modern Reset */
body, html {
margin: 0;
padding: 0;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #edf9ff;
font-family: sans-serif;
}
/* The Centered Box */
.card {
background: #fef5ff;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
text-align: center;
min-width: 450px;
}
h1 {
color: #333;
margin-bottom: 1.5rem;
}
/* The Centered Button */
button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
transition: background 0.2s;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="card">
<h1>Hi bb,</h1>
<h2>Will you be my valentine?</h2>
<p>When: Saturday, February 7, 2026
<p><button onclick="alert('Yay!')">Yes</button>
</div>
</body>
</html>