Files
life_generators/luck_generator/index.html
2023-11-01 00:19:19 +08:00

32 lines
899 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://unpkg.com/vue@3.3.4/dist/vue.global.js"></script>
<link rel="stylesheet" href="./styles.css">
<title>Daily Luck Generator</title>
</head>
<body>
<div class="container">
<div class="row text-center">
<h1>今日運勢</h1>
</div>
<div class="row">
<table>
<tr>
<td>宜: </td>
<td>忌: </td>
</tr>
<tr>
<td>宜: </td>
<td>忌: </td>
</tr>
</table>
</div>
</div>
<script src="./luck.js"></script>
</body>
</html>