Create index.html

This commit is contained in:
Moon
2023-11-01 00:11:14 +08:00
committed by GitHub
parent 91e3cfef23
commit d54884b68d

30
luck_generator/index.html Normal file
View File

@@ -0,0 +1,30 @@
<!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">
<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>