質問編集履歴
1
コード張らせていただきました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,112 @@
|
|
1
|
-
|
1
|
+
```<!doctype html>
|
2
|
+
|
3
|
+
<html class="no-js" lang="">
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
<head>
|
8
|
+
|
9
|
+
<meta charset="utf-8">
|
10
|
+
|
11
|
+
<title></title>
|
12
|
+
|
13
|
+
<meta name="description" content="">
|
14
|
+
|
15
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
<meta property="og:title" content="">
|
20
|
+
|
21
|
+
<meta property="og:type" content="">
|
22
|
+
|
23
|
+
<meta property="og:url" content="">
|
24
|
+
|
25
|
+
<meta property="og:image" content="">
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
<link rel="manifest" href="site.webmanifest">
|
30
|
+
|
31
|
+
<link rel="apple-touch-icon" href="icon.png">
|
32
|
+
|
33
|
+
<!-- Place favicon.ico in the root directory -->
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
<meta name="theme-color" content="#fafafa">
|
42
|
+
|
43
|
+
</head>
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
<body>
|
48
|
+
|
49
|
+
<div class="container">
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
<div class="mt-1 alert alert-primary" role="alert">
|
56
|
+
|
57
|
+
A simple primary alert—check it out!
|
58
|
+
|
59
|
+
</div>
|
60
|
+
|
61
|
+
<div class="d-flex justify-content-center">
|
62
|
+
|
63
|
+
<button type="button" class="btn btn-primary">Primary</button>
|
64
|
+
|
65
|
+
<button type="button" class="ms-1 btn btn-primary">Primary</button>
|
66
|
+
|
67
|
+
<button type="button" class="ms-1 btn btn-primary">Primary</button>
|
68
|
+
|
69
|
+
<button type="button" class="ms-1 btn btn-primary">Primary</button>
|
70
|
+
|
71
|
+
</div>
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
</div>
|
76
|
+
|
77
|
+
<script src="app.js"></script>
|
78
|
+
|
79
|
+
</body>
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
</html>
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
const question = 'ゲーム市場、最も売れたゲーム機は次のうちどれ?';
|
88
|
+
|
89
|
+
const answers =[
|
90
|
+
|
91
|
+
'スーパーファミコン',
|
92
|
+
|
93
|
+
'プレイステーション',
|
94
|
+
|
95
|
+
'ニンテンドースイッチ',
|
96
|
+
|
97
|
+
'ニンテンドーDS'
|
98
|
+
|
99
|
+
];
|
100
|
+
|
101
|
+
const correct = 'ニンテンドーDS';
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
document.getElementsByTagName('div');
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
```vscodeでJavaScriptのコードを書いています。
|
2
110
|
|
3
111
|
Google Chromeでコンソールを開こうとするとcors policyによってブロックされているとのエラーが出て来ます。
|
4
112
|
|