質問編集履歴

1

「切り出した」ファイルのソースを張りました。

2019/06/02 02:26

投稿

asa_1
asa_1

スコア10

test CHANGED
File without changes
test CHANGED
@@ -181,3 +181,121 @@
181
181
  </style>
182
182
 
183
183
  ```
184
+
185
+
186
+
187
+ 以下は「切り出した」ファイルの内容です。
188
+
189
+ ```
190
+
191
+ <!doctype html>
192
+
193
+ <html lang="ja">
194
+
195
+
196
+
197
+ <head>
198
+
199
+ <title>タイトル</title>
200
+
201
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
202
+
203
+ <link rel="stylesheet" type="text/css" href="css/stylesheet.css">
204
+
205
+ </head>
206
+
207
+
208
+
209
+ <body>
210
+
211
+
212
+
213
+ <div class="container">
214
+
215
+ <div class="row bg-primary">
216
+
217
+ <div class="col-md-1">
218
+
219
+ <a name="top" href="index.html"><img class="float-left mt-1" src="material/logo.GIF" alt="ロゴ"></a>
220
+
221
+ </div>
222
+
223
+ <div class="col-md-11">
224
+
225
+ <h1 class="text-white ml-3">タイトル</h1>
226
+
227
+ <p class="text-white text-right" >サブタイトル</p>
228
+
229
+ </div>
230
+
231
+ </div>
232
+
233
+ <div class="row">
234
+
235
+ <div class="col-md-3">
236
+
237
+ <div class="btn-group-vertical btn-sm btn-block">
238
+
239
+ <div class="dropdown btn-block">
240
+
241
+ <a class="btn btn-outline-primary btn-sm btn-block" href="index.html">ホーム</a>
242
+
243
+ <a class="btn btn-primary btn-sm btn-block" href="main/index.html">メイン</a>
244
+
245
+ <a class="btn btn-primary dropdown-toggle btn-sm btn-block" id="dropdown4" data-toggle="dropdown" href="#">ドロップダウンメニュー4</a>
246
+
247
+ <div class="dropdown-menu btn-primary btn-block" aria-labelledby="dropdown4">
248
+
249
+ <a class="dropdown-item" href="dropdown4/index.html">ドロップダウンメニュー4-1</a>
250
+
251
+ <a class="dropdown-item" href="dropdown4/sub.html">ドロップダウンメニュー4-2</a>
252
+
253
+ </div>
254
+
255
+ </div>
256
+
257
+ </div>
258
+
259
+ </div>
260
+
261
+ <div class="tate col-lg-9">
262
+
263
+ <div class="jumbotron">
264
+
265
+ <h3>本文</h3>
266
+
267
+ <p class="col-md-2">文章</p>
268
+
269
+ </div>
270
+
271
+ </div>
272
+
273
+ </div>
274
+
275
+ <a class="badge badge-primary" href="#top" title="このページの最上部へ">&nbsp;PAGETOP</a>
276
+
277
+ <hr class="bg-primary">
278
+
279
+ <p><a href="main/sitepolicy.html">サイトポリシー</a></p>
280
+
281
+ <p>&copy;SINCE2007&nbsp;asa_1&nbsp;All&nbsp;Rights&nbsp;Reserved.</p>
282
+
283
+ </div>
284
+
285
+ <!-- jQuery first, then Popper.js, then Bootstrap JS -->
286
+
287
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
288
+
289
+ <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
290
+
291
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
292
+
293
+
294
+
295
+ </body>
296
+
297
+
298
+
299
+ </html>
300
+
301
+ ```