You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
537 B

3 weeks ago
# lllzzhhh
3 weeks ago
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>星座和属相查询</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>星座和属相查询</h1>
<input type="date" id="birthDate" placeholder="输入出生日期">
<button onclick="queryHoroscopeAndZodiac()">查询</button>
<div id="result"></div>
</div>
<script src="script.js"></script>
</body>
3 weeks ago
</html>