質問編集履歴

3

省略なし

2019/02/09 03:14

投稿

liisa
liisa

スコア20

test CHANGED
File without changes
test CHANGED
@@ -134,266 +134,274 @@
134
134
 
135
135
  ```css
136
136
 
137
-
137
+ body{
138
+
138
-
139
+ margin:0;
140
+
141
+ padding:0;
142
+
143
+ background-color: silver;
144
+
145
+ color:black;
146
+
147
+ font-size:15px;
148
+
149
+ line-height: 2;
150
+
151
+ }
152
+
153
+
154
+
155
+ p,h1,h2,h3,h4,h5,h6{
156
+
157
+ margin-top: 0;
158
+
159
+ }
160
+
161
+
162
+
163
+ img{
164
+
165
+ vertical-align: bottom;
166
+
167
+ }
168
+
169
+
170
+
139
- コード
171
+ ul{
172
+
173
+ margin:0;
174
+
175
+ padding:0;
176
+
177
+ }
178
+
179
+
180
+
181
+ a{
182
+
183
+ color:black;
184
+
185
+ text-decoration: none;
186
+
187
+ }
188
+
189
+
190
+
191
+ a:visited{
192
+
193
+ color: white;/*機能しているかチェック*/
194
+
195
+ }
196
+
197
+
198
+
199
+ a:hover{
200
+
201
+ text-decoration:underline;
202
+
203
+ }
204
+
205
+
206
+
207
+ header{
208
+
209
+ width:960px;
210
+
211
+ height:100px;
212
+
213
+ margin:0 auto;
214
+
215
+ }
216
+
217
+
218
+
219
+ .logo{
220
+
221
+ float:left;
222
+
223
+ margin-top: 30px;
224
+
225
+ }
226
+
227
+
228
+
229
+ .global-nav{
230
+
231
+ float:right;
232
+
233
+ margin-top: 60px;
234
+
235
+ }
236
+
237
+
238
+
239
+ .global-nav li{
240
+
241
+ float:left;
242
+
243
+ margin:0 20px;
244
+
245
+ font-size: 20px;
246
+
247
+ list-style: none;
248
+
249
+ }
250
+
251
+
252
+
253
+ .global-nav li a{
254
+
255
+ color: black;
256
+
257
+ }
258
+
259
+
260
+
261
+ .global-nav li a:hover{
262
+
263
+ border-bottom: 2px solid white;
264
+
265
+ padding-bottom: 3px;
266
+
267
+ text-decoration: none;
268
+
269
+ }
270
+
271
+
272
+
273
+ #wrap{
274
+
275
+ clear: both;
276
+
277
+ background-color: silver;
278
+
279
+ margin-top: 220px;
280
+
281
+ padding:35px 0;
282
+
283
+ }
284
+
285
+
286
+
287
+ .main-center{
288
+
289
+ width:940px;
290
+
291
+ margin: 0 auto;
292
+
293
+
294
+
295
+ }
296
+
297
+ .content{
298
+
299
+ width: 960px;
300
+
301
+ margin: 0 auto;
302
+
303
+ }
304
+
305
+
306
+
307
+ footer{
308
+
309
+ text-align: center;
310
+
311
+ color: black;
312
+
313
+ padding: 20px 0;
314
+
315
+ }
316
+
317
+
318
+
319
+ footer small{
320
+
321
+ font-size: 12px
322
+
323
+ }
324
+
325
+
326
+
327
+ h1{
328
+
329
+ font-size: 36px;
330
+
331
+ border-bottom: 1px solid white;
332
+
333
+ }
334
+
335
+
336
+
337
+ h2{
338
+
339
+ font-size: 24px;
340
+
341
+ }
342
+
343
+
344
+
345
+ #about{
346
+
347
+ background-repeat: no-repeat;
348
+
349
+ background-position: center center;
350
+
351
+ background-attachment: fixed;
352
+
353
+ background-size: 100% auto;
354
+
355
+ }
356
+
357
+ .icon:before{
358
+
359
+ content: "";
360
+
361
+ padding-right: 10px;
362
+
363
+ border-left: 12px solid black;
364
+
365
+ }
366
+
367
+
368
+
369
+ #about .profile-txt{
370
+
371
+ width: 540px;
372
+
373
+ float: left;
374
+
375
+ }
376
+
377
+
378
+
379
+ #about .profile-image{
380
+
381
+ float: right;
382
+
383
+ }
384
+
385
+
386
+
387
+
388
+
389
+ .clearfix: after{
390
+
391
+ content:"";
392
+
393
+ display: block;
394
+
395
+ height: 0;
396
+
397
+ clear: both;
398
+
399
+ }
400
+
401
+ .section{
402
+
403
+ margin-bottom:35px;
404
+
405
+ }
140
406
 
141
407
  ```
142
-
143
- body{
144
-
145
- margin:0;
146
-
147
- padding:0;
148
-
149
- background-color: silver;
150
-
151
- color:black;
152
-
153
- font-size:15px;
154
-
155
- line-height: 2;
156
-
157
- }
158
-
159
-
160
-
161
- p,h1,h2,h3,h4,h5,h6{
162
-
163
- margin-top: 0;
164
-
165
- }
166
-
167
-
168
-
169
- img{
170
-
171
- vertical-align: bottom;
172
-
173
- }
174
-
175
-
176
-
177
- ul{
178
-
179
- margin:0;
180
-
181
- padding:0;
182
-
183
- }
184
-
185
-
186
-
187
- a{
188
-
189
- color:black;
190
-
191
- text-decoration: none;
192
-
193
- }
194
-
195
-
196
-
197
- a:visited{
198
-
199
- color: white;/*機能しているかチェック*/
200
-
201
- }
202
-
203
-
204
-
205
- a:hover{
206
-
207
- text-decoration:underline;
208
-
209
- }
210
-
211
-
212
-
213
- header{
214
-
215
- width:960px;
216
-
217
- height:100px;
218
-
219
- margin:0 auto;
220
-
221
- }
222
-
223
-
224
-
225
- .logo{
226
-
227
- float:left;
228
-
229
- margin-top: 30px;
230
-
231
- }
232
-
233
-
234
-
235
- .global-nav{
236
-
237
- float:right;
238
-
239
- margin-top: 60px;
240
-
241
- }
242
-
243
-
244
-
245
- .global-nav li{
246
-
247
- float:left;
248
-
249
- margin:0 20px;
250
-
251
- font-size: 20px;
252
-
253
- list-style: none;
254
-
255
- }
256
-
257
-
258
-
259
- .global-nav li a{
260
-
261
- color: black;
262
-
263
- }
264
-
265
-
266
-
267
- .global-nav li a:hover{
268
-
269
- border-bottom: 2px solid white;
270
-
271
- padding-bottom: 3px;
272
-
273
- text-decoration: none;
274
-
275
- }
276
-
277
-
278
-
279
- #wrap{
280
-
281
- clear: both;
282
-
283
- background-color: silver;
284
-
285
- margin-top: 220px;
286
-
287
- padding:35px 0;
288
-
289
- }
290
-
291
-
292
-
293
- .main-center{
294
-
295
- width:940px;
296
-
297
- margin: 0 auto;
298
-
299
-
300
-
301
- }
302
-
303
- .content{
304
-
305
- width: 960px;
306
-
307
- margin: 0 auto;
308
-
309
- }
310
-
311
-
312
-
313
- footer{
314
-
315
- text-align: center;
316
-
317
- color: black;
318
-
319
- padding: 20px 0;
320
-
321
- }
322
-
323
-
324
-
325
- footer small{
326
-
327
- font-size: 12px
328
-
329
- }
330
-
331
-
332
-
333
- h1{
334
-
335
- font-size: 36px;
336
-
337
- border-bottom: 1px solid white;
338
-
339
- }
340
-
341
-
342
-
343
- h2{
344
-
345
- font-size: 24px;
346
-
347
- }
348
-
349
-
350
-
351
- .icon:before{
352
-
353
- content: "";
354
-
355
- padding-right: 10px;
356
-
357
- border-left: 12px solid black;
358
-
359
- }
360
-
361
-
362
-
363
- #about .profile-txt{
364
-
365
- width: 540px;
366
-
367
- float: left;
368
-
369
- }
370
-
371
-
372
-
373
- #about .profile-image{
374
-
375
- float: right;
376
-
377
- }
378
-
379
-
380
-
381
-
382
-
383
- .clearfix: after{
384
-
385
- content:"";
386
-
387
- display: block;
388
-
389
- height: 0;
390
-
391
- clear: both;
392
-
393
- }
394
-
395
- .section{
396
-
397
- margin-bottom:35px;
398
-
399
- }

2

省略してないものです

2019/02/09 03:14

投稿

liisa
liisa

スコア20

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  ```html
2
2
 
3
- !DOCTYPE html>
3
+ html>
4
4
 
5
5
  <html>
6
6
 
@@ -10,7 +10,7 @@
10
10
 
11
11
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
12
12
 
13
- <title>自己紹介</title>
13
+ <title>自己紹介サイト</title>
14
14
 
15
15
  <link rel="stylesheet" href="about.css">
16
16
 
@@ -24,7 +24,7 @@
24
24
 
25
25
  <div class="logo">
26
26
 
27
- <a herf="index.html"><img .....</a>
27
+ <a herf="index.html"><img src="./images/welcome.png" alt=""></a>
28
28
 
29
29
  </div>
30
30
 
@@ -36,7 +36,11 @@
36
36
 
37
37
  <ul class="global-nav">
38
38
 
39
+ <li><a href="about.html">who I am</a></li>
40
+
39
- 省略
41
+ <li><a href="Like.html">Like</a></li>
42
+
43
+ <li><a href="contact.html">Contact</a></li>
40
44
 
41
45
  </ul>
42
46
 
@@ -68,7 +72,15 @@
68
72
 
69
73
  <h2 class="icon">Profile</h2>
70
74
 
75
+ <p>名前:<br>
76
+
77
+ 出身:<br>
78
+
71
- 省略
79
+ 趣味:サーフィン
80
+
81
+ </p>
82
+
83
+
72
84
 
73
85
 
74
86
 
@@ -78,7 +90,7 @@
78
90
 
79
91
 
80
92
 
81
- <img src="img.jpeg" alt="" class="profile-image">
93
+ <img src="./images/me.jpeg" alt="わたし!" class="profile-image">
82
94
 
83
95
  </section>
84
96
 
@@ -90,7 +102,9 @@
90
102
 
91
103
  <h2 class="icon">意気込み</h2>
92
104
 
105
+ <p>これからよろしくお願いします。<br>
106
+
93
- <p>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</p>
107
+ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</p>
94
108
 
95
109
 
96
110
 
@@ -106,7 +120,7 @@
106
120
 
107
121
  <footer>
108
122
 
109
- <small>省略</small>
123
+ <small>(c)2019 sea-introduce</small>
110
124
 
111
125
  </footer>
112
126
 
@@ -120,6 +134,12 @@
120
134
 
121
135
  ```css
122
136
 
137
+
138
+
139
+ コード
140
+
141
+ ```
142
+
123
143
  body{
124
144
 
125
145
  margin:0;
@@ -362,7 +382,7 @@
362
382
 
363
383
  .clearfix: after{
364
384
 
365
- content"";
385
+ content:"";
366
386
 
367
387
  display: block;
368
388
 
@@ -377,7 +397,3 @@
377
397
  margin-bottom:35px;
378
398
 
379
399
  }
380
-
381
- コード
382
-
383
- ```

1

コード等、書き直しました。

2019/02/09 03:13

投稿

liisa
liisa

スコア20

test CHANGED
File without changes
test CHANGED
@@ -1,20 +1,64 @@
1
- html
1
+ ```html
2
+
3
+ !DOCTYPE html>
4
+
5
+ <html>
6
+
7
+ <head>
8
+
9
+ <meta charset="utf-8">
10
+
11
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
12
+
13
+ <title>自己紹介</title>
14
+
15
+ <link rel="stylesheet" href="about.css">
16
+
17
+ </head>
2
18
 
3
19
 
4
20
 
5
21
  <body id="about">
6
22
 
23
+ <header>
24
+
25
+ <div class="logo">
26
+
27
+ <a herf="index.html"><img .....</a>
28
+
29
+ </div>
30
+
31
+
32
+
33
+
34
+
7
- 省略......
35
+ <nav>
36
+
8
-
37
+ <ul class="global-nav">
38
+
9
-
39
+ 省略
40
+
10
-
41
+ </ul>
42
+
43
+ </nav>
44
+
45
+
46
+
47
+ </header>
48
+
49
+
50
+
51
+
52
+
53
+
54
+
11
- <div id="wrap">
55
+ <div id="wrap">
12
56
 
13
57
  <div class="content">
14
58
 
15
59
  <div class="main-center">
16
60
 
17
- <h1>自己紹介</h1>
61
+ <h1>About me</h1>
18
62
 
19
63
 
20
64
 
@@ -24,9 +68,7 @@
24
68
 
25
69
  <h2 class="icon">Profile</h2>
26
70
 
27
- 省略.........
71
+ 省略
28
-
29
-
30
72
 
31
73
 
32
74
 
@@ -48,12 +90,10 @@
48
90
 
49
91
  <h2 class="icon">意気込み</h2>
50
92
 
51
- <p>よろしくお願いします。</p>
93
+ <p>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</p>
52
94
 
53
95
 
54
96
 
55
-
56
-
57
97
  </section>
58
98
 
59
99
  </div>
@@ -66,7 +106,7 @@
66
106
 
67
107
  <footer>
68
108
 
69
- <small>(c)省略</small>
109
+ <small>省略</small>
70
110
 
71
111
  </footer>
72
112
 
@@ -76,9 +116,215 @@
76
116
 
77
117
  </html>
78
118
 
79
-
119
+ ```
120
+
80
-
121
+ ```css
122
+
123
+ body{
124
+
125
+ margin:0;
126
+
127
+ padding:0;
128
+
129
+ background-color: silver;
130
+
131
+ color:black;
132
+
133
+ font-size:15px;
134
+
135
+ line-height: 2;
136
+
137
+ }
138
+
139
+
140
+
141
+ p,h1,h2,h3,h4,h5,h6{
142
+
143
+ margin-top: 0;
144
+
145
+ }
146
+
147
+
148
+
81
- #CSS
149
+ img{
150
+
151
+ vertical-align: bottom;
152
+
153
+ }
154
+
155
+
156
+
157
+ ul{
158
+
159
+ margin:0;
160
+
161
+ padding:0;
162
+
163
+ }
164
+
165
+
166
+
167
+ a{
168
+
169
+ color:black;
170
+
171
+ text-decoration: none;
172
+
173
+ }
174
+
175
+
176
+
177
+ a:visited{
178
+
179
+ color: white;/*機能しているかチェック*/
180
+
181
+ }
182
+
183
+
184
+
185
+ a:hover{
186
+
187
+ text-decoration:underline;
188
+
189
+ }
190
+
191
+
192
+
193
+ header{
194
+
195
+ width:960px;
196
+
197
+ height:100px;
198
+
199
+ margin:0 auto;
200
+
201
+ }
202
+
203
+
204
+
205
+ .logo{
206
+
207
+ float:left;
208
+
209
+ margin-top: 30px;
210
+
211
+ }
212
+
213
+
214
+
215
+ .global-nav{
216
+
217
+ float:right;
218
+
219
+ margin-top: 60px;
220
+
221
+ }
222
+
223
+
224
+
225
+ .global-nav li{
226
+
227
+ float:left;
228
+
229
+ margin:0 20px;
230
+
231
+ font-size: 20px;
232
+
233
+ list-style: none;
234
+
235
+ }
236
+
237
+
238
+
239
+ .global-nav li a{
240
+
241
+ color: black;
242
+
243
+ }
244
+
245
+
246
+
247
+ .global-nav li a:hover{
248
+
249
+ border-bottom: 2px solid white;
250
+
251
+ padding-bottom: 3px;
252
+
253
+ text-decoration: none;
254
+
255
+ }
256
+
257
+
258
+
259
+ #wrap{
260
+
261
+ clear: both;
262
+
263
+ background-color: silver;
264
+
265
+ margin-top: 220px;
266
+
267
+ padding:35px 0;
268
+
269
+ }
270
+
271
+
272
+
273
+ .main-center{
274
+
275
+ width:940px;
276
+
277
+ margin: 0 auto;
278
+
279
+
280
+
281
+ }
282
+
283
+ .content{
284
+
285
+ width: 960px;
286
+
287
+ margin: 0 auto;
288
+
289
+ }
290
+
291
+
292
+
293
+ footer{
294
+
295
+ text-align: center;
296
+
297
+ color: black;
298
+
299
+ padding: 20px 0;
300
+
301
+ }
302
+
303
+
304
+
305
+ footer small{
306
+
307
+ font-size: 12px
308
+
309
+ }
310
+
311
+
312
+
313
+ h1{
314
+
315
+ font-size: 36px;
316
+
317
+ border-bottom: 1px solid white;
318
+
319
+ }
320
+
321
+
322
+
323
+ h2{
324
+
325
+ font-size: 24px;
326
+
327
+ }
82
328
 
83
329
 
84
330
 
@@ -131,3 +377,7 @@
131
377
  margin-bottom:35px;
132
378
 
133
379
  }
380
+
381
+ コード
382
+
383
+ ```