-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 924 Bytes
/
index.html
File metadata and controls
35 lines (33 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>ランダム格言ガチャ</title>
<meta name="description" content="ランダムに格言を表示します" />
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
</head>
<body>
<div class="container">
<header>
<h1>
ランダム格言ガチャ
</h1>
<img src="images/head.jpg" />
</header>
<div class="row">
<main>
<h2>格言を表示</h2>
<div id="gacha-display">
下記ボタンをクリック/タップで表示します。
</div>
<button id="gacha-button">格言を表示</button>
</main>
</div>
<footer>
<p>ランダム格言ガチャ</p>
</footer>
</div>
<script src="quote.js"></script>
</body>
</html>