質問編集履歴

1

HTML追加

2017/09/04 16:02

投稿

pomi220
pomi220

スコア8

test CHANGED
File without changes
test CHANGED
@@ -199,3 +199,93 @@
199
199
  }
200
200
 
201
201
  ```
202
+
203
+
204
+
205
+ [追記]
206
+
207
+ HTMLは以下の通りです。
208
+
209
+
210
+
211
+ ```
212
+
213
+ <!DOCKTYPE <!DOCTYPE html>
214
+
215
+ <html lang="ja">
216
+
217
+ <head>
218
+
219
+ <meta charset="UTF-8">
220
+
221
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
222
+
223
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
224
+
225
+ <link rel="stylesheet" href="index.css">
226
+
227
+ <title>Koolhaaz official web site</title>
228
+
229
+ </head>
230
+
231
+
232
+
233
+ <body>
234
+
235
+ <div id="content">
236
+
237
+ <div id="header">
238
+
239
+
240
+
241
+
242
+
243
+ <div id="nav">
244
+
245
+ <ol>
246
+
247
+ <li><a href="./index.html">home</a></li>
248
+
249
+ <li><a href="./member.html">about us</a></li>
250
+
251
+ <li><a href="">portfolio</a></li>
252
+
253
+ <li><a href="./contact.html">contact</a></li>
254
+
255
+ </ol>
256
+
257
+ </div>
258
+
259
+ </div>
260
+
261
+
262
+
263
+ <div id="main">
264
+
265
+ <div id="message">
266
+
267
+ <p>hogehoge<br>
268
+
269
+ hogehoge</p>
270
+
271
+ </div>
272
+
273
+ </div>
274
+
275
+
276
+
277
+
278
+
279
+ <div id="footer">
280
+
281
+ <p>©️Hoge</p>
282
+
283
+ </div>
284
+
285
+
286
+
287
+ </body>
288
+
289
+ </html>
290
+
291
+ ```