Untitled
4 months ago in HTML
<!DOCTYPE html>
<html lang="en">
<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;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #007bff;
}
p {
text-align: center;
}
.contact {
text-align: center;
margin-top: 20px;
}
.contact a {
text-decoration: none;
color: #007bff;
}
.contact a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>小揭天才 - [你的名字]</h1>
<p>欢迎来到我的个人网页!我是一位小揭(谜题)天才,喜欢挑战各种难题,并且对 app 测试有着浓厚的兴趣。</p>
<p>如果你有任何有趣的小揭想让我解答,或者需要我测试你的 app,请随时联系我!</p>
<div class="contact">
<p>联系方式:</p>
<p>Email: [email protected]</p>
<p>电话: +1234567890</p>
</div>
</div>
</body>
</html>