質問編集履歴
1
HTMLを追加しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -124,6 +124,104 @@
|
|
124
124
|
|
125
125
|
```
|
126
126
|
|
127
|
+
```HTML
|
128
|
+
|
129
|
+
<!doctype html>
|
130
|
+
|
131
|
+
<html class="no-js" lang="">
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
<head>
|
136
|
+
|
137
|
+
<meta charset="utf-8">
|
138
|
+
|
139
|
+
<title></title>
|
140
|
+
|
141
|
+
<meta name="description" content="">
|
142
|
+
|
143
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
<meta property="og:title" content="">
|
148
|
+
|
149
|
+
<meta property="og:type" content="">
|
150
|
+
|
151
|
+
<meta property="og:url" content="">
|
152
|
+
|
153
|
+
<meta property="og:image" content="">
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
<link rel="manifest" href="site.webmanifest">
|
158
|
+
|
159
|
+
<link rel="apple-touch-icon" href="icon.png">
|
160
|
+
|
161
|
+
<!-- Place favicon.ico in the root directory -->
|
162
|
+
|
163
|
+
<script src = "app.js"></script>
|
164
|
+
|
165
|
+
</body>
|
166
|
+
|
167
|
+
<link rel="stylesheet" href="css/normalize.css">
|
168
|
+
|
169
|
+
<link rel="stylesheet" href="css/main.css">
|
170
|
+
|
171
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
|
172
|
+
|
173
|
+
crossorigin="anonymous">
|
174
|
+
|
175
|
+
<meta name="theme-color" content="#fafafa">
|
176
|
+
|
177
|
+
</head>
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
<body>
|
182
|
+
|
183
|
+
<div class="container">
|
184
|
+
|
185
|
+
<!-- Content here -->
|
186
|
+
|
187
|
+
<!-- Add your site or application content here -->
|
188
|
+
|
189
|
+
<p> </p>
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
<div id="js-question" class="mt-3 alert alert-primary" role="alert">
|
194
|
+
|
195
|
+
A simple primary alert—check it out!
|
196
|
+
|
197
|
+
</div>
|
198
|
+
|
199
|
+
<div class="d-flex justify-content-center">
|
200
|
+
|
201
|
+
<button type="button" class="btn btn-primary">Primary</button>
|
202
|
+
|
203
|
+
<button type="button" class="ms-1 btn btn-primary">Primary</button>
|
204
|
+
|
205
|
+
<button type="button" class="ms-1 btn btn-primary">Primary</button>
|
206
|
+
|
207
|
+
<button type="button" class="ms-1 btn btn-primary">Primary</button>
|
208
|
+
|
209
|
+
</div>
|
210
|
+
|
211
|
+
</div>
|
212
|
+
|
213
|
+
<script src = "app.js"></script>
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
</body>
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
</html>
|
222
|
+
|
223
|
+
```
|
224
|
+
|
127
225
|
|
128
226
|
|
129
227
|
### 試したこと
|