質問編集履歴

1

HTML の追加

2020/08/25 08:12

投稿

suissuis
suissuis

スコア0

test CHANGED
File without changes
test CHANGED
@@ -30,6 +30,56 @@
30
30
 
31
31
 
32
32
 
33
+ ```HTML
34
+
35
+ <!DOCTYPE html>
36
+
37
+ <html lang="ja">
38
+
39
+
40
+
41
+ <head>
42
+
43
+ <meta charset="UTF-8">
44
+
45
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
46
+
47
+ <title>後出しじゃんけんゲーム</title>
48
+
49
+ <link rel="stylesheet" href="copy.css">
50
+
51
+ </head>
52
+
53
+
54
+
55
+ <body>
56
+
57
+ <h1 id="title">後出しじゃんけんゲーム!</h1>
58
+
59
+ <button id="start-button">スタート</button>
60
+
61
+ <h1 id="signal-text"></h1>
62
+
63
+ <div id="signal-image"></div>
64
+
65
+ <div id="judgment-area" class="judgment"></div>
66
+
67
+ <h2 id="score-area" class="score"></h2>
68
+
69
+ <div id="janken-area"></div>
70
+
71
+ <script src="copy.js"></script>
72
+
73
+ </body>
74
+
75
+
76
+
77
+ </html>
78
+
79
+ ```
80
+
81
+
82
+
33
83
  ```JavaScript
34
84
 
35
85
  'use strci';