質問編集履歴
3
「試したこと」を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,6 +38,14 @@
|
|
38
38
|
|
39
39
|
・パソコンの再起動
|
40
40
|
|
41
|
+
[追記]
|
42
|
+
|
43
|
+
・htmlファイルをブラウザにドロップ
|
44
|
+
|
45
|
+
・WEBサーバーにアップしてブラウザでURLアクセス(ロゴ以外の画像が表示されない)
|
46
|
+
|
47
|
+
・Chromeの319MBのキャッシュデータを削除
|
48
|
+
|
41
49
|
|
42
50
|
|
43
51
|
参考書
|
2
問題のライブプレビュー画像をUPしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,553 +24,527 @@
|
|
24
24
|
|
25
25
|
|
26
26
|
|
27
|
+
|
28
|
+
|
29
|
+
### 試したこと
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
・再読み込みボタンを右クリックして”キャシュの消去とハードの再読み込み”
|
34
|
+
|
35
|
+
・Chromeの設定でキャッシュを消去
|
36
|
+
|
37
|
+
・Bracketsの再起動
|
38
|
+
|
39
|
+
・パソコンの再起動
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
参考書
|
44
|
+
|
45
|
+
HTML&CSSとWebデザインが 1冊できちんと身につく本 服部 雄樹 (著)
|
46
|
+
|
47
|
+
https://gihyo.jp/book/2017/978-4-7741-9064-8
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
```ここに言語を入力
|
52
|
+
|
53
|
+
```<!doctype html>
|
54
|
+
|
55
|
+
<html>
|
56
|
+
|
57
|
+
<head>
|
58
|
+
|
59
|
+
<meta charset="utf-8">
|
60
|
+
|
27
|
-
|
61
|
+
<title>ポートフォリオ 【 ちーたくん 】</title>
|
62
|
+
|
28
|
-
|
63
|
+
<link href="https://fonts.googleapis.com/css?family=Bitter:400,700" rel="stylesheet">
|
64
|
+
|
65
|
+
<link href="css/style.css" rel="stylesheet">
|
66
|
+
|
67
|
+
</head>
|
68
|
+
|
69
|
+
<body id="index">
|
70
|
+
|
71
|
+
<header>
|
72
|
+
|
73
|
+
<div class="logo">
|
74
|
+
|
75
|
+
<a href="index.html"><img src="images/logo.png" alt="SNAPPERS"></a>
|
76
|
+
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<nav>
|
80
|
+
|
81
|
+
<ul class="global-nav">
|
82
|
+
|
83
|
+
<li><a href="portfolio.html">Portfolio</a></li>
|
84
|
+
|
85
|
+
<li><a href="about.html">About</a></li>
|
86
|
+
|
87
|
+
<li><a href="contact.html">Contact</a></li>
|
88
|
+
|
89
|
+
</ul>
|
90
|
+
|
91
|
+
</nav>
|
92
|
+
|
29
|
-
|
93
|
+
</header>
|
94
|
+
|
30
|
-
|
95
|
+
<div id="wrap">
|
96
|
+
|
31
|
-
|
97
|
+
<div class="content">
|
98
|
+
|
99
|
+
<h1>Expression is <br>my identity, Design! Design!</h1>
|
100
|
+
|
101
|
+
<p>ご覧くださいまして、ありがとうございます。<br>このwebサイトは、【 ちーたくん 】のポートフォリオサイトです。</p>
|
102
|
+
|
103
|
+
<p class="btn"><a href="portfolio.html">My portfolio</a></p>
|
104
|
+
|
105
|
+
</div>
|
106
|
+
|
107
|
+
</div>
|
108
|
+
|
109
|
+
<footer>
|
110
|
+
|
111
|
+
<small>(C)2019 cheeta - kun.</small>
|
112
|
+
|
113
|
+
</footer>
|
114
|
+
|
115
|
+
</body>
|
116
|
+
|
117
|
+
</html>
|
32
118
|
|
33
119
|
```
|
34
120
|
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
``````ここに言語を入力
|
126
|
+
|
127
|
+
@charset "utf-8";
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
body {
|
132
|
+
|
133
|
+
margin: 0;
|
134
|
+
|
135
|
+
padding: 0;
|
136
|
+
|
137
|
+
background-color: #cccccc;
|
138
|
+
|
139
|
+
color: #333333;
|
140
|
+
|
141
|
+
font-size: 15px;
|
142
|
+
|
143
|
+
line-height: 2;
|
144
|
+
|
145
|
+
}
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
p,h1,h2,h3,h4,h5,h6{
|
150
|
+
|
151
|
+
margin-top: 0;
|
152
|
+
|
153
|
+
}
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
img{
|
158
|
+
|
159
|
+
vertical-align: bottom;
|
160
|
+
|
161
|
+
}
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
ul {
|
166
|
+
|
167
|
+
margin: 0;
|
168
|
+
|
169
|
+
padding: 0;
|
170
|
+
|
171
|
+
}
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
a {
|
176
|
+
|
177
|
+
color: #3583aa;
|
178
|
+
|
179
|
+
text-decoration: none;
|
180
|
+
|
181
|
+
}
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
a:visited{
|
186
|
+
|
187
|
+
color: #788d98;
|
188
|
+
|
189
|
+
}
|
190
|
+
|
191
|
+
|
192
|
+
|
35
|
-
|
193
|
+
a:hover{
|
194
|
+
|
195
|
+
text-decoration: underline;
|
196
|
+
|
197
|
+
}
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
header{
|
202
|
+
|
203
|
+
width: 960px;
|
204
|
+
|
205
|
+
height: 100px;
|
206
|
+
|
207
|
+
margin: 0 auto;
|
208
|
+
|
209
|
+
}
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
.logo{
|
214
|
+
|
215
|
+
float: left;
|
216
|
+
|
217
|
+
margin-top: 50px;
|
218
|
+
|
219
|
+
}
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
.global-nav{
|
224
|
+
|
225
|
+
float: right;
|
226
|
+
|
227
|
+
margin-top: 60px;
|
228
|
+
|
229
|
+
}
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
.global-nav li{
|
234
|
+
|
235
|
+
float: left;
|
236
|
+
|
237
|
+
margin: 0 20px;
|
238
|
+
|
239
|
+
font-size: 20px;
|
240
|
+
|
241
|
+
list-style: none;
|
242
|
+
|
243
|
+
font-family: 'Bitter', serif;
|
244
|
+
|
245
|
+
}
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
.gloval-nav li a{
|
250
|
+
|
251
|
+
color: #ffffff;
|
252
|
+
|
253
|
+
}
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
.gloval-nav li a:hover{
|
258
|
+
|
259
|
+
border-bottom: 2px solid #ffffff;
|
260
|
+
|
261
|
+
padding-bottom: 3px;
|
262
|
+
|
263
|
+
text-decoration: none;
|
264
|
+
|
265
|
+
}
|
266
|
+
|
267
|
+
|
268
|
+
|
269
|
+
#wrap{
|
270
|
+
|
271
|
+
clear: both;
|
272
|
+
|
273
|
+
background-color: #ffffff;
|
274
|
+
|
275
|
+
margin-top: 220px;
|
276
|
+
|
277
|
+
padding: 35px 0;
|
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: #ffffff;
|
298
|
+
|
299
|
+
padding: 20px 0;
|
300
|
+
|
301
|
+
}
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
footer small{
|
306
|
+
|
307
|
+
font-size: 12px;
|
308
|
+
|
309
|
+
}
|
310
|
+
|
311
|
+
|
312
|
+
|
313
|
+
#index h1{
|
314
|
+
|
315
|
+
font-size: 100px;
|
316
|
+
|
317
|
+
line-height: 1;
|
318
|
+
|
319
|
+
color: #ffffff;
|
320
|
+
|
321
|
+
font-family: 'Bitter', serif;
|
322
|
+
|
323
|
+
margin-bottom: 50px;
|
324
|
+
|
325
|
+
}
|
326
|
+
|
327
|
+
|
328
|
+
|
329
|
+
#index .content{
|
330
|
+
|
331
|
+
margin-top: 150px;
|
332
|
+
|
333
|
+
}
|
334
|
+
|
335
|
+
|
336
|
+
|
337
|
+
#index p{
|
338
|
+
|
339
|
+
font-size: 16px;
|
340
|
+
|
341
|
+
color: #ffffff;
|
342
|
+
|
343
|
+
}
|
344
|
+
|
345
|
+
|
346
|
+
|
347
|
+
.btn a{
|
348
|
+
|
349
|
+
background-color: #009cd3;
|
350
|
+
|
351
|
+
color: #ffffff;
|
352
|
+
|
353
|
+
font-size: 20px;
|
354
|
+
|
355
|
+
font-family: 'Bitter', serif;
|
356
|
+
|
357
|
+
width: 185px;
|
358
|
+
|
359
|
+
display: block;
|
360
|
+
|
361
|
+
text-align: center;
|
362
|
+
|
363
|
+
line-height: 50px;
|
364
|
+
|
365
|
+
margin-top: 20px;
|
366
|
+
|
367
|
+
border-radius: 5px;
|
368
|
+
|
369
|
+
border: 3px solid #009cd3;
|
370
|
+
|
371
|
+
}
|
372
|
+
|
373
|
+
|
374
|
+
|
375
|
+
.btn a:hover{
|
376
|
+
|
377
|
+
text-decoration: none;
|
378
|
+
|
379
|
+
background-color: #ffffff;
|
380
|
+
|
381
|
+
color: #009cd3;
|
382
|
+
|
383
|
+
}
|
384
|
+
|
385
|
+
|
386
|
+
|
387
|
+
#index footer{
|
388
|
+
|
389
|
+
width: 960px;
|
390
|
+
|
391
|
+
margin: 150px auto 0 auto;
|
392
|
+
|
393
|
+
text-align: left;
|
394
|
+
|
395
|
+
}
|
396
|
+
|
397
|
+
|
398
|
+
|
399
|
+
#index{
|
400
|
+
|
401
|
+
background-image: url(../images/bg-index.jpg);
|
402
|
+
|
403
|
+
background-repeat: no-repeat;
|
404
|
+
|
405
|
+
background-position: center center;
|
406
|
+
|
407
|
+
background-attachment: fixed;
|
408
|
+
|
409
|
+
background-size: cover;
|
410
|
+
|
411
|
+
}
|
412
|
+
|
413
|
+
|
414
|
+
|
415
|
+
#about{
|
416
|
+
|
417
|
+
background-image: url(../images/bg-about.jpg);
|
418
|
+
|
419
|
+
background-repeat: no-repeat;
|
420
|
+
|
421
|
+
background-position: center top;
|
422
|
+
|
423
|
+
background-attachment: fixed;
|
424
|
+
|
425
|
+
background-size: 100% auto;
|
426
|
+
|
427
|
+
}
|
428
|
+
|
429
|
+
.main-center{
|
430
|
+
|
431
|
+
width: 940px;
|
432
|
+
|
433
|
+
margin: 0 auto;
|
434
|
+
|
435
|
+
}
|
436
|
+
|
437
|
+
|
438
|
+
|
439
|
+
|
440
|
+
|
441
|
+
h1{
|
442
|
+
|
443
|
+
font-family: 'Bitter', serif;
|
444
|
+
|
445
|
+
font-size: 36px;
|
446
|
+
|
447
|
+
border-bottom: 1px solid #cccccc;
|
448
|
+
|
449
|
+
}
|
450
|
+
|
451
|
+
|
452
|
+
|
453
|
+
h2{font-family: 'Bitter', serif;
|
454
|
+
|
455
|
+
font-size: 24px;
|
456
|
+
|
457
|
+
}
|
458
|
+
|
459
|
+
|
460
|
+
|
461
|
+
|
462
|
+
|
463
|
+
.icon:before{
|
464
|
+
|
465
|
+
content: "";
|
466
|
+
|
467
|
+
padding-right: 10px;
|
468
|
+
|
469
|
+
border-left: 7px solid #9cb4a4;
|
470
|
+
|
471
|
+
}
|
472
|
+
|
473
|
+
|
474
|
+
|
475
|
+
#about .profile-txt{
|
476
|
+
|
477
|
+
width: 540px;
|
478
|
+
|
479
|
+
float: left;
|
480
|
+
|
481
|
+
}
|
482
|
+
|
483
|
+
|
484
|
+
|
485
|
+
#about .profile-txt span{
|
486
|
+
|
487
|
+
font-weight: bold;
|
488
|
+
|
489
|
+
}
|
490
|
+
|
491
|
+
|
492
|
+
|
493
|
+
#about .profile-image{
|
494
|
+
|
495
|
+
float: right;
|
496
|
+
|
497
|
+
}
|
498
|
+
|
499
|
+
|
500
|
+
|
501
|
+
.clearfix:after{
|
502
|
+
|
503
|
+
content:"";
|
504
|
+
|
505
|
+
display:block;
|
506
|
+
|
507
|
+
clear: both;
|
508
|
+
|
509
|
+
}
|
510
|
+
|
511
|
+
|
512
|
+
|
513
|
+
section{
|
514
|
+
|
515
|
+
margin-bottom: 35px;
|
516
|
+
|
517
|
+
}
|
518
|
+
|
519
|
+
|
520
|
+
|
521
|
+
#about .career th{
|
522
|
+
|
523
|
+
width: 240px;
|
524
|
+
|
525
|
+
background-color: #f0f0f0;
|
526
|
+
|
527
|
+
padding: 12px 0;
|
528
|
+
|
529
|
+
border: 1px solid #cccccc;
|
530
|
+
|
531
|
+
}
|
532
|
+
|
533
|
+
|
534
|
+
|
535
|
+
#about .career td{
|
536
|
+
|
537
|
+
width: 660px;
|
538
|
+
|
539
|
+
padding 12px 0 12px 40px;
|
540
|
+
|
541
|
+
border: 1px solid #cccccc;
|
542
|
+
|
543
|
+
}
|
36
544
|
|
37
545
|
```
|
38
546
|
|
39
|
-
|
40
|
-
|
41
|
-
### 該当のソースコード
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
```ここに言語名を入力
|
46
|
-
|
47
|
-
ソースコード
|
48
|
-
|
49
|
-
```
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
### 試したこと
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
・再読み込みボタンを右クリックして”キャシュの消去とハードの再読み込み”
|
58
|
-
|
59
|
-
・Chromeの設定でキャッシュを消去
|
60
|
-
|
61
|
-
・Bracketsの再起動
|
62
|
-
|
63
|
-
・パソコンの再起動
|
64
|
-
|
65
|
-
### 補足情報(FW/ツールのバージョンなど)
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
参考書
|
70
|
-
|
71
|
-
HTML&CSSとWebデザインが 1冊できちんと身につく本 服部 雄樹 (著)
|
72
|
-
|
73
|
-
https://gihyo.jp/book/2017/978-4-7741-9064-8
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
```ここに言語を入力
|
78
|
-
|
79
|
-
```<!doctype html>
|
80
|
-
|
81
|
-
<html>
|
82
|
-
|
83
|
-
<head>
|
84
|
-
|
85
|
-
<meta charset="utf-8">
|
86
|
-
|
87
|
-
<title>ポートフォリオ 【 ちーたくん 】</title>
|
88
|
-
|
89
|
-
<link href="https://fonts.googleapis.com/css?family=Bitter:400,700" rel="stylesheet">
|
90
|
-
|
91
|
-
<link href="css/style.css" rel="stylesheet">
|
92
|
-
|
93
|
-
</head>
|
94
|
-
|
95
|
-
<body id="index">
|
96
|
-
|
97
|
-
<header>
|
98
|
-
|
99
|
-
<div class="logo">
|
100
|
-
|
101
|
-
<a href="index.html"><img src="images/logo.png" alt="SNAPPERS"></a>
|
102
|
-
|
103
|
-
</div>
|
104
|
-
|
105
|
-
<nav>
|
106
|
-
|
107
|
-
<ul class="global-nav">
|
108
|
-
|
109
|
-
<li><a href="portfolio.html">Portfolio</a></li>
|
110
|
-
|
111
|
-
<li><a href="about.html">About</a></li>
|
112
|
-
|
113
|
-
<li><a href="contact.html">Contact</a></li>
|
114
|
-
|
115
|
-
</ul>
|
116
|
-
|
117
|
-
</nav>
|
118
|
-
|
119
|
-
</header>
|
120
|
-
|
121
|
-
<div id="wrap">
|
122
|
-
|
123
|
-
<div class="content">
|
124
|
-
|
125
|
-
<h1>Expression is <br>my identity, Design! Design!</h1>
|
126
|
-
|
127
|
-
<p>ご覧くださいまして、ありがとうございます。<br>このwebサイトは、【 ちーたくん 】のポートフォリオサイトです。</p>
|
128
|
-
|
129
|
-
<p class="btn"><a href="portfolio.html">My portfolio</a></p>
|
130
|
-
|
131
|
-
</div>
|
132
|
-
|
133
|
-
</div>
|
134
|
-
|
135
|
-
<footer>
|
136
|
-
|
137
|
-
<small>(C)2019 cheeta - kun.</small>
|
138
|
-
|
139
|
-
</footer>
|
140
|
-
|
141
|
-
</body>
|
142
|
-
|
143
|
-
</html>
|
144
|
-
|
145
|
-
```
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
``````ここに言語を入力
|
152
|
-
|
153
|
-
@charset "utf-8";
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
body {
|
158
|
-
|
159
|
-
margin: 0;
|
160
|
-
|
161
|
-
padding: 0;
|
162
|
-
|
163
|
-
background-color: #cccccc;
|
164
|
-
|
165
|
-
color: #333333;
|
166
|
-
|
167
|
-
font-size: 15px;
|
168
|
-
|
169
|
-
line-height: 2;
|
170
|
-
|
171
|
-
}
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
p,h1,h2,h3,h4,h5,h6{
|
176
|
-
|
177
|
-
margin-top: 0;
|
178
|
-
|
179
|
-
}
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
img{
|
184
|
-
|
185
|
-
vertical-align: bottom;
|
186
|
-
|
187
|
-
}
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
ul {
|
192
|
-
|
193
|
-
margin: 0;
|
194
|
-
|
195
|
-
padding: 0;
|
196
|
-
|
197
|
-
}
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
a {
|
202
|
-
|
203
|
-
color: #3583aa;
|
204
|
-
|
205
|
-
text-decoration: none;
|
206
|
-
|
207
|
-
}
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
a:visited{
|
212
|
-
|
213
|
-
color: #788d98;
|
214
|
-
|
215
|
-
}
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
a:hover{
|
220
|
-
|
221
|
-
text-decoration: underline;
|
222
|
-
|
223
|
-
}
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
header{
|
228
|
-
|
229
|
-
width: 960px;
|
230
|
-
|
231
|
-
height: 100px;
|
232
|
-
|
233
|
-
margin: 0 auto;
|
234
|
-
|
235
|
-
}
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
.logo{
|
240
|
-
|
241
|
-
float: left;
|
242
|
-
|
243
|
-
margin-top: 50px;
|
244
|
-
|
245
|
-
}
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
.global-nav{
|
250
|
-
|
251
|
-
float: right;
|
252
|
-
|
253
|
-
margin-top: 60px;
|
254
|
-
|
255
|
-
}
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
.global-nav li{
|
260
|
-
|
261
|
-
float: left;
|
262
|
-
|
263
|
-
margin: 0 20px;
|
264
|
-
|
265
|
-
font-size: 20px;
|
266
|
-
|
267
|
-
list-style: none;
|
268
|
-
|
269
|
-
font-family: 'Bitter', serif;
|
270
|
-
|
271
|
-
}
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
.gloval-nav li a{
|
276
|
-
|
277
|
-
color: #ffffff;
|
278
|
-
|
279
|
-
}
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
.gloval-nav li a:hover{
|
284
|
-
|
285
|
-
border-bottom: 2px solid #ffffff;
|
286
|
-
|
287
|
-
padding-bottom: 3px;
|
288
|
-
|
289
|
-
text-decoration: none;
|
290
|
-
|
291
|
-
}
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
#wrap{
|
296
|
-
|
297
|
-
clear: both;
|
298
|
-
|
299
|
-
background-color: #ffffff;
|
300
|
-
|
301
|
-
margin-top: 220px;
|
302
|
-
|
303
|
-
padding: 35px 0;
|
304
|
-
|
305
|
-
}
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
.content{
|
310
|
-
|
311
|
-
width: 960px;
|
312
|
-
|
313
|
-
margin: 0 auto;
|
314
|
-
|
315
|
-
}
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
footer{
|
320
|
-
|
321
|
-
text-align: center;
|
322
|
-
|
323
|
-
color: #ffffff;
|
324
|
-
|
325
|
-
padding: 20px 0;
|
326
|
-
|
327
|
-
}
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
footer small{
|
332
|
-
|
333
|
-
font-size: 12px;
|
334
|
-
|
335
|
-
}
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
#index h1{
|
340
|
-
|
341
|
-
font-size: 100px;
|
342
|
-
|
343
|
-
line-height: 1;
|
344
|
-
|
345
|
-
color: #ffffff;
|
346
|
-
|
347
|
-
font-family: 'Bitter', serif;
|
348
|
-
|
349
|
-
margin-bottom: 50px;
|
350
|
-
|
351
|
-
}
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
#index .content{
|
356
|
-
|
357
|
-
margin-top: 150px;
|
358
|
-
|
359
|
-
}
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
#index p{
|
364
|
-
|
365
|
-
font-size: 16px;
|
366
|
-
|
367
|
-
color: #ffffff;
|
368
|
-
|
369
|
-
}
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
.btn a{
|
374
|
-
|
375
|
-
background-color: #009cd3;
|
376
|
-
|
377
|
-
color: #ffffff;
|
378
|
-
|
379
|
-
font-size: 20px;
|
380
|
-
|
381
|
-
font-family: 'Bitter', serif;
|
382
|
-
|
383
|
-
width: 185px;
|
384
|
-
|
385
|
-
display: block;
|
386
|
-
|
387
|
-
text-align: center;
|
388
|
-
|
389
|
-
line-height: 50px;
|
390
|
-
|
391
|
-
margin-top: 20px;
|
392
|
-
|
393
|
-
border-radius: 5px;
|
394
|
-
|
395
|
-
border: 3px solid #009cd3;
|
396
|
-
|
397
|
-
}
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
.btn a:hover{
|
402
|
-
|
403
|
-
text-decoration: none;
|
404
|
-
|
405
|
-
background-color: #ffffff;
|
406
|
-
|
407
|
-
color: #009cd3;
|
408
|
-
|
409
|
-
}
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
#index footer{
|
414
|
-
|
415
|
-
width: 960px;
|
416
|
-
|
417
|
-
margin: 150px auto 0 auto;
|
418
|
-
|
419
|
-
text-align: left;
|
420
|
-
|
421
|
-
}
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
#index{
|
426
|
-
|
427
|
-
background-image: url(../images/bg-index.jpg);
|
428
|
-
|
429
|
-
background-repeat: no-repeat;
|
430
|
-
|
431
|
-
background-position: center center;
|
432
|
-
|
433
|
-
background-attachment: fixed;
|
434
|
-
|
435
|
-
background-size: cover;
|
436
|
-
|
437
|
-
}
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
#about{
|
442
|
-
|
443
|
-
|
547
|
+
![問題が起きているライブプレビュー画面](5e8856d2bcdf0a09386c8f87785cb4a2.jpeg)
|
444
|
-
|
445
|
-
background-repeat: no-repeat;
|
446
|
-
|
447
|
-
background-position: center top;
|
448
|
-
|
449
|
-
background-attachment: fixed;
|
450
|
-
|
451
|
-
background-size: 100% auto;
|
452
|
-
|
453
|
-
}
|
454
|
-
|
455
|
-
.main-center{
|
456
|
-
|
457
|
-
width: 940px;
|
458
|
-
|
459
|
-
margin: 0 auto;
|
460
|
-
|
461
|
-
}
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
h1{
|
468
|
-
|
469
|
-
font-family: 'Bitter', serif;
|
470
|
-
|
471
|
-
font-size: 36px;
|
472
|
-
|
473
|
-
border-bottom: 1px solid #cccccc;
|
474
|
-
|
475
|
-
}
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
h2{font-family: 'Bitter', serif;
|
480
|
-
|
481
|
-
font-size: 24px;
|
482
|
-
|
483
|
-
}
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
.icon:before{
|
490
|
-
|
491
|
-
content: "";
|
492
|
-
|
493
|
-
padding-right: 10px;
|
494
|
-
|
495
|
-
border-left: 7px solid #9cb4a4;
|
496
|
-
|
497
|
-
}
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
#about .profile-txt{
|
502
|
-
|
503
|
-
width: 540px;
|
504
|
-
|
505
|
-
float: left;
|
506
|
-
|
507
|
-
}
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
#about .profile-txt span{
|
512
|
-
|
513
|
-
font-weight: bold;
|
514
|
-
|
515
|
-
}
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
#about .profile-image{
|
520
|
-
|
521
|
-
float: right;
|
522
|
-
|
523
|
-
}
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
.clearfix:after{
|
528
|
-
|
529
|
-
content:"";
|
530
|
-
|
531
|
-
display:block;
|
532
|
-
|
533
|
-
clear: both;
|
534
|
-
|
535
|
-
}
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
section{
|
540
|
-
|
541
|
-
margin-bottom: 35px;
|
542
|
-
|
543
|
-
}
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
#about .career th{
|
548
|
-
|
549
|
-
width: 240px;
|
550
|
-
|
551
|
-
background-color: #f0f0f0;
|
552
|
-
|
553
|
-
padding: 12px 0;
|
554
|
-
|
555
|
-
border: 1px solid #cccccc;
|
556
|
-
|
557
|
-
}
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
#about .career td{
|
562
|
-
|
563
|
-
width: 660px;
|
564
|
-
|
565
|
-
padding 12px 0 12px 40px;
|
566
|
-
|
567
|
-
border: 1px solid #cccccc;
|
568
|
-
|
569
|
-
}
|
570
|
-
|
571
|
-
```
|
572
|
-
|
573
|
-
|
574
548
|
|
575
549
|
![ホームページロゴマーク](382645b0dd57c29dbb3fb1f9e224739c.png)
|
576
550
|
|
1
コードを開示しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
### 前提・実現したいこと
|
1
|
+
```### 前提・実現したいこと
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -71,3 +71,507 @@
|
|
71
71
|
HTML&CSSとWebデザインが 1冊できちんと身につく本 服部 雄樹 (著)
|
72
72
|
|
73
73
|
https://gihyo.jp/book/2017/978-4-7741-9064-8
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
```ここに言語を入力
|
78
|
+
|
79
|
+
```<!doctype html>
|
80
|
+
|
81
|
+
<html>
|
82
|
+
|
83
|
+
<head>
|
84
|
+
|
85
|
+
<meta charset="utf-8">
|
86
|
+
|
87
|
+
<title>ポートフォリオ 【 ちーたくん 】</title>
|
88
|
+
|
89
|
+
<link href="https://fonts.googleapis.com/css?family=Bitter:400,700" rel="stylesheet">
|
90
|
+
|
91
|
+
<link href="css/style.css" rel="stylesheet">
|
92
|
+
|
93
|
+
</head>
|
94
|
+
|
95
|
+
<body id="index">
|
96
|
+
|
97
|
+
<header>
|
98
|
+
|
99
|
+
<div class="logo">
|
100
|
+
|
101
|
+
<a href="index.html"><img src="images/logo.png" alt="SNAPPERS"></a>
|
102
|
+
|
103
|
+
</div>
|
104
|
+
|
105
|
+
<nav>
|
106
|
+
|
107
|
+
<ul class="global-nav">
|
108
|
+
|
109
|
+
<li><a href="portfolio.html">Portfolio</a></li>
|
110
|
+
|
111
|
+
<li><a href="about.html">About</a></li>
|
112
|
+
|
113
|
+
<li><a href="contact.html">Contact</a></li>
|
114
|
+
|
115
|
+
</ul>
|
116
|
+
|
117
|
+
</nav>
|
118
|
+
|
119
|
+
</header>
|
120
|
+
|
121
|
+
<div id="wrap">
|
122
|
+
|
123
|
+
<div class="content">
|
124
|
+
|
125
|
+
<h1>Expression is <br>my identity, Design! Design!</h1>
|
126
|
+
|
127
|
+
<p>ご覧くださいまして、ありがとうございます。<br>このwebサイトは、【 ちーたくん 】のポートフォリオサイトです。</p>
|
128
|
+
|
129
|
+
<p class="btn"><a href="portfolio.html">My portfolio</a></p>
|
130
|
+
|
131
|
+
</div>
|
132
|
+
|
133
|
+
</div>
|
134
|
+
|
135
|
+
<footer>
|
136
|
+
|
137
|
+
<small>(C)2019 cheeta - kun.</small>
|
138
|
+
|
139
|
+
</footer>
|
140
|
+
|
141
|
+
</body>
|
142
|
+
|
143
|
+
</html>
|
144
|
+
|
145
|
+
```
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
``````ここに言語を入力
|
152
|
+
|
153
|
+
@charset "utf-8";
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
body {
|
158
|
+
|
159
|
+
margin: 0;
|
160
|
+
|
161
|
+
padding: 0;
|
162
|
+
|
163
|
+
background-color: #cccccc;
|
164
|
+
|
165
|
+
color: #333333;
|
166
|
+
|
167
|
+
font-size: 15px;
|
168
|
+
|
169
|
+
line-height: 2;
|
170
|
+
|
171
|
+
}
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
p,h1,h2,h3,h4,h5,h6{
|
176
|
+
|
177
|
+
margin-top: 0;
|
178
|
+
|
179
|
+
}
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
img{
|
184
|
+
|
185
|
+
vertical-align: bottom;
|
186
|
+
|
187
|
+
}
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
ul {
|
192
|
+
|
193
|
+
margin: 0;
|
194
|
+
|
195
|
+
padding: 0;
|
196
|
+
|
197
|
+
}
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
a {
|
202
|
+
|
203
|
+
color: #3583aa;
|
204
|
+
|
205
|
+
text-decoration: none;
|
206
|
+
|
207
|
+
}
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
a:visited{
|
212
|
+
|
213
|
+
color: #788d98;
|
214
|
+
|
215
|
+
}
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
a:hover{
|
220
|
+
|
221
|
+
text-decoration: underline;
|
222
|
+
|
223
|
+
}
|
224
|
+
|
225
|
+
|
226
|
+
|
227
|
+
header{
|
228
|
+
|
229
|
+
width: 960px;
|
230
|
+
|
231
|
+
height: 100px;
|
232
|
+
|
233
|
+
margin: 0 auto;
|
234
|
+
|
235
|
+
}
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
.logo{
|
240
|
+
|
241
|
+
float: left;
|
242
|
+
|
243
|
+
margin-top: 50px;
|
244
|
+
|
245
|
+
}
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
.global-nav{
|
250
|
+
|
251
|
+
float: right;
|
252
|
+
|
253
|
+
margin-top: 60px;
|
254
|
+
|
255
|
+
}
|
256
|
+
|
257
|
+
|
258
|
+
|
259
|
+
.global-nav li{
|
260
|
+
|
261
|
+
float: left;
|
262
|
+
|
263
|
+
margin: 0 20px;
|
264
|
+
|
265
|
+
font-size: 20px;
|
266
|
+
|
267
|
+
list-style: none;
|
268
|
+
|
269
|
+
font-family: 'Bitter', serif;
|
270
|
+
|
271
|
+
}
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
.gloval-nav li a{
|
276
|
+
|
277
|
+
color: #ffffff;
|
278
|
+
|
279
|
+
}
|
280
|
+
|
281
|
+
|
282
|
+
|
283
|
+
.gloval-nav li a:hover{
|
284
|
+
|
285
|
+
border-bottom: 2px solid #ffffff;
|
286
|
+
|
287
|
+
padding-bottom: 3px;
|
288
|
+
|
289
|
+
text-decoration: none;
|
290
|
+
|
291
|
+
}
|
292
|
+
|
293
|
+
|
294
|
+
|
295
|
+
#wrap{
|
296
|
+
|
297
|
+
clear: both;
|
298
|
+
|
299
|
+
background-color: #ffffff;
|
300
|
+
|
301
|
+
margin-top: 220px;
|
302
|
+
|
303
|
+
padding: 35px 0;
|
304
|
+
|
305
|
+
}
|
306
|
+
|
307
|
+
|
308
|
+
|
309
|
+
.content{
|
310
|
+
|
311
|
+
width: 960px;
|
312
|
+
|
313
|
+
margin: 0 auto;
|
314
|
+
|
315
|
+
}
|
316
|
+
|
317
|
+
|
318
|
+
|
319
|
+
footer{
|
320
|
+
|
321
|
+
text-align: center;
|
322
|
+
|
323
|
+
color: #ffffff;
|
324
|
+
|
325
|
+
padding: 20px 0;
|
326
|
+
|
327
|
+
}
|
328
|
+
|
329
|
+
|
330
|
+
|
331
|
+
footer small{
|
332
|
+
|
333
|
+
font-size: 12px;
|
334
|
+
|
335
|
+
}
|
336
|
+
|
337
|
+
|
338
|
+
|
339
|
+
#index h1{
|
340
|
+
|
341
|
+
font-size: 100px;
|
342
|
+
|
343
|
+
line-height: 1;
|
344
|
+
|
345
|
+
color: #ffffff;
|
346
|
+
|
347
|
+
font-family: 'Bitter', serif;
|
348
|
+
|
349
|
+
margin-bottom: 50px;
|
350
|
+
|
351
|
+
}
|
352
|
+
|
353
|
+
|
354
|
+
|
355
|
+
#index .content{
|
356
|
+
|
357
|
+
margin-top: 150px;
|
358
|
+
|
359
|
+
}
|
360
|
+
|
361
|
+
|
362
|
+
|
363
|
+
#index p{
|
364
|
+
|
365
|
+
font-size: 16px;
|
366
|
+
|
367
|
+
color: #ffffff;
|
368
|
+
|
369
|
+
}
|
370
|
+
|
371
|
+
|
372
|
+
|
373
|
+
.btn a{
|
374
|
+
|
375
|
+
background-color: #009cd3;
|
376
|
+
|
377
|
+
color: #ffffff;
|
378
|
+
|
379
|
+
font-size: 20px;
|
380
|
+
|
381
|
+
font-family: 'Bitter', serif;
|
382
|
+
|
383
|
+
width: 185px;
|
384
|
+
|
385
|
+
display: block;
|
386
|
+
|
387
|
+
text-align: center;
|
388
|
+
|
389
|
+
line-height: 50px;
|
390
|
+
|
391
|
+
margin-top: 20px;
|
392
|
+
|
393
|
+
border-radius: 5px;
|
394
|
+
|
395
|
+
border: 3px solid #009cd3;
|
396
|
+
|
397
|
+
}
|
398
|
+
|
399
|
+
|
400
|
+
|
401
|
+
.btn a:hover{
|
402
|
+
|
403
|
+
text-decoration: none;
|
404
|
+
|
405
|
+
background-color: #ffffff;
|
406
|
+
|
407
|
+
color: #009cd3;
|
408
|
+
|
409
|
+
}
|
410
|
+
|
411
|
+
|
412
|
+
|
413
|
+
#index footer{
|
414
|
+
|
415
|
+
width: 960px;
|
416
|
+
|
417
|
+
margin: 150px auto 0 auto;
|
418
|
+
|
419
|
+
text-align: left;
|
420
|
+
|
421
|
+
}
|
422
|
+
|
423
|
+
|
424
|
+
|
425
|
+
#index{
|
426
|
+
|
427
|
+
background-image: url(../images/bg-index.jpg);
|
428
|
+
|
429
|
+
background-repeat: no-repeat;
|
430
|
+
|
431
|
+
background-position: center center;
|
432
|
+
|
433
|
+
background-attachment: fixed;
|
434
|
+
|
435
|
+
background-size: cover;
|
436
|
+
|
437
|
+
}
|
438
|
+
|
439
|
+
|
440
|
+
|
441
|
+
#about{
|
442
|
+
|
443
|
+
background-image: url(../images/bg-about.jpg);
|
444
|
+
|
445
|
+
background-repeat: no-repeat;
|
446
|
+
|
447
|
+
background-position: center top;
|
448
|
+
|
449
|
+
background-attachment: fixed;
|
450
|
+
|
451
|
+
background-size: 100% auto;
|
452
|
+
|
453
|
+
}
|
454
|
+
|
455
|
+
.main-center{
|
456
|
+
|
457
|
+
width: 940px;
|
458
|
+
|
459
|
+
margin: 0 auto;
|
460
|
+
|
461
|
+
}
|
462
|
+
|
463
|
+
|
464
|
+
|
465
|
+
|
466
|
+
|
467
|
+
h1{
|
468
|
+
|
469
|
+
font-family: 'Bitter', serif;
|
470
|
+
|
471
|
+
font-size: 36px;
|
472
|
+
|
473
|
+
border-bottom: 1px solid #cccccc;
|
474
|
+
|
475
|
+
}
|
476
|
+
|
477
|
+
|
478
|
+
|
479
|
+
h2{font-family: 'Bitter', serif;
|
480
|
+
|
481
|
+
font-size: 24px;
|
482
|
+
|
483
|
+
}
|
484
|
+
|
485
|
+
|
486
|
+
|
487
|
+
|
488
|
+
|
489
|
+
.icon:before{
|
490
|
+
|
491
|
+
content: "";
|
492
|
+
|
493
|
+
padding-right: 10px;
|
494
|
+
|
495
|
+
border-left: 7px solid #9cb4a4;
|
496
|
+
|
497
|
+
}
|
498
|
+
|
499
|
+
|
500
|
+
|
501
|
+
#about .profile-txt{
|
502
|
+
|
503
|
+
width: 540px;
|
504
|
+
|
505
|
+
float: left;
|
506
|
+
|
507
|
+
}
|
508
|
+
|
509
|
+
|
510
|
+
|
511
|
+
#about .profile-txt span{
|
512
|
+
|
513
|
+
font-weight: bold;
|
514
|
+
|
515
|
+
}
|
516
|
+
|
517
|
+
|
518
|
+
|
519
|
+
#about .profile-image{
|
520
|
+
|
521
|
+
float: right;
|
522
|
+
|
523
|
+
}
|
524
|
+
|
525
|
+
|
526
|
+
|
527
|
+
.clearfix:after{
|
528
|
+
|
529
|
+
content:"";
|
530
|
+
|
531
|
+
display:block;
|
532
|
+
|
533
|
+
clear: both;
|
534
|
+
|
535
|
+
}
|
536
|
+
|
537
|
+
|
538
|
+
|
539
|
+
section{
|
540
|
+
|
541
|
+
margin-bottom: 35px;
|
542
|
+
|
543
|
+
}
|
544
|
+
|
545
|
+
|
546
|
+
|
547
|
+
#about .career th{
|
548
|
+
|
549
|
+
width: 240px;
|
550
|
+
|
551
|
+
background-color: #f0f0f0;
|
552
|
+
|
553
|
+
padding: 12px 0;
|
554
|
+
|
555
|
+
border: 1px solid #cccccc;
|
556
|
+
|
557
|
+
}
|
558
|
+
|
559
|
+
|
560
|
+
|
561
|
+
#about .career td{
|
562
|
+
|
563
|
+
width: 660px;
|
564
|
+
|
565
|
+
padding 12px 0 12px 40px;
|
566
|
+
|
567
|
+
border: 1px solid #cccccc;
|
568
|
+
|
569
|
+
}
|
570
|
+
|
571
|
+
```
|
572
|
+
|
573
|
+
|
574
|
+
|
575
|
+
![ホームページロゴマーク](382645b0dd57c29dbb3fb1f9e224739c.png)
|
576
|
+
|
577
|
+
![背景使用画像](6796034afc6b1467ddaac595e9ddeb4f.jpeg)](3679c8a29f614450cdf08328e07b770c.jpeg)
|