-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.18 KB
/
index.html
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>トランプゲーム</title>
<link rel="stylesheet" href="./style.css">
<script src="./main.js"></script>
</head>
<body>
<header>
<ul>
<li id="stock_n">山札:-</li>
<li id="cards_n">カード:-</li>
</ul>
<div>
<button id="button_hint" class="button" type="submit" name="hint">ヒント</button>
<button id="button_undo" class="button" type="submit" name="undo">戻す</button>
</div>
</header>
<div id="header-back"></div>
<div id="canvas-box">
<canvas id="myCanvas" width="400" height="1792">エラー:このブラウザはcanvasに対応していないようです。</canvas>
</div>
<footer>
<ul>
<li><a href="https://github.com/KOTO28/card_couple" target="_blank" rel=noopener>リポジトリ</a></li>
<li><a href="https://github.com/KOTO28/card_couple#readme" target="_blank" rel=noopener>必ず読んでください</a></li>
<li><a href="https://forms.gle/cg6GmGT8KmP2EEQp8" target="_blank" rel=noopener>アンケートにご協力ください</a></li>
</ul>
<p>made by KOTO28</p>
</footer>
</body>
</html>