質問編集履歴

7

2019/06/18 16:38

投稿

hare8008
hare8008

スコア10

test CHANGED
File without changes
test CHANGED
@@ -382,6 +382,16 @@
382
382
 
383
383
 
384
384
 
385
+
386
+
387
+ ・追加のご質問1点目について
388
+
389
+ →全てのcssが反映されておりません。
390
+
391
+
392
+
393
+
394
+
385
395
  ### 該当のソースコード
386
396
 
387
397
 

6

codeボタンでコードブロックへ移動しました

2019/06/18 16:38

投稿

hare8008
hare8008

スコア10

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,6 @@
1
- ![イメージ説明](7b2d1ade35e12abf23160b42e5333e17.png)```html
1
+ ![イメージ説明](7b2d1ade35e12abf23160b42e5333e17.png)
2
+
3
+ ```html
2
4
 
3
5
 
4
6
 

5

フォルダの中身を再掲載

2019/06/18 16:22

投稿

hare8008
hare8008

スコア10

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- ```html
1
+ ![イメージ説明](7b2d1ade35e12abf23160b42e5333e17.png)```html
2
2
 
3
3
 
4
4
 

4

codeボタンでコードブロックへ移動しました

2019/06/18 16:22

投稿

hare8008
hare8008

スコア10

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,10 @@
1
- ![イメージ説明](565dde0a4253cd01b3e53241bdc7d927.png)```html
1
+ ```html
2
-
3
-
2
+
3
+
4
+
5
+
6
+
7
+       
4
8
 
5
9
  <!DOCTYPE html>
6
10
 
@@ -260,6 +264,12 @@
260
264
 
261
265
 
262
266
 
267
+
268
+
269
+ ```![イメージ説明](565dde0a4253cd01b3e53241bdc7d927.png)
270
+
271
+
272
+
263
273
  ```css
264
274
 
265
275
 

3

キャプチャを追加しました

2019/06/18 16:19

投稿

hare8008
hare8008

スコア10

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- ```html
1
+ ![イメージ説明](565dde0a4253cd01b3e53241bdc7d927.png)```html
2
2
 
3
3
 
4
4
 

2

codeボタンでコードブロックへ移動しました

2019/06/18 16:12

投稿

hare8008
hare8008

スコア10

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,354 @@
1
+ ```html
2
+
3
+
4
+
5
+ <!DOCTYPE html>
6
+
7
+
8
+
9
+
10
+
11
+ <html lang="ja">
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+ <head>
20
+
21
+ <!--headタグは、文書全体に情報を入れるためのもの-->
22
+
23
+ <meta charset="utf-8">
24
+
25
+ <!-- →これは文字コード-->
26
+
27
+ <title>Phis よく使うサイト</title>
28
+
29
+ <!-- →ブラウザのタイトル-->
30
+
31
+ <link rel="icon" href="img/favicon.ico">
32
+
33
+ <!-- →ブラウザのタブのアイコン-->
34
+
35
+ <!-- icoの作り方は、ファビコン 作り方 で検索-->
36
+
37
+ <meta name="description" content="Phisのよく使うサイトです。">
38
+
39
+
40
+
41
+ <link rel="stylesheet" href="css/css02.css" type="text/css">
42
+
43
+
44
+
45
+ <!-- linkタグにより、cssを別ファイルで管理-->
46
+
47
+
48
+
49
+ </head>
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+ <body>
58
+
59
+
60
+
61
+ <header>
62
+
63
+ <!-- header headタグと混同しやすい-->
64
+
65
+ <img src="img/header.png">
66
+
67
+ <nav>
68
+
69
+ <!-- navタグ=文書のナビゲーションですという意味-->
70
+
71
+ <ul>
72
+
73
+ <!-- ul、ol、liの説明はHTML12回講義-->
74
+
75
+ <li>
76
+
77
+ <a href="%E6%9A%97%E5%8F%B7%E8%B3%87%E7%94%A3%E3%80%80%E3%
78
+
79
+ 82%88%E3%81%8F%E4%BD%BF%E3%81%86%E3%82%B5%E3%82%A4%E3%83%88.html">
80
+
81
+ <!-- 講義14.ページ内の移動-->
82
+
83
+ <font color="white">
84
+
85
+ HOME
86
+
87
+ </font>
88
+
89
+ </a>
90
+
91
+ </li>
92
+
93
+
94
+
95
+ <li>
96
+
97
+ <a href="02ABOUT.html">
98
+
99
+ <!-- 移動リンクの作成-->
100
+
101
+ <font color="white">
102
+
103
+ ABOUT
104
+
105
+ </font>
106
+
107
+ </a>
108
+
109
+ </li>
110
+
111
+ </ul>
112
+
113
+ </nav>
114
+
115
+ </header>
116
+
117
+
118
+
119
+
120
+
121
+ <section>
122
+
123
+ <!-- sectionタグで括ると個別で意味を持たせることができる。-->
124
+
125
+ <section>
126
+
127
+
128
+
129
+ <br>
130
+
131
+ <img src="img/Phis.png" width="160" height="160" alt="アイコン" class="icon">
132
+
133
+ <h1><font color="white">Phis</font></h1>
134
+
135
+ <p><font color="white">ルーティーン</font></p>
136
+
137
+ <br>
138
+
139
+
140
+
141
+ <section>
142
+
143
+ <a href="https://"target="_blank" class="icon">
144
+
145
+ <img src="img/1.png" width="400" height="260" alt="1"></a>
146
+
147
+ <h2><font color="white">1</font></h2>
148
+
149
+ <p><font color="white">取引所 1</font></p>
150
+
151
+ </section>
152
+
153
+
154
+
155
+ <section>
156
+
157
+ <a href="https://"target="_blank" class="icon">
158
+
159
+ <img src="img/2.png" width="400" height="260" alt="2"></a>
160
+
161
+ <h2><font color="white">2</font></h2>
162
+
163
+ <p><font color="white">取引所 2</font></p>
164
+
165
+ </section>
166
+
167
+
168
+
169
+ <section>
170
+
171
+ <a href="https://jp."target="_blank" class="icon">
172
+
173
+ <img src="img/3.png" width="400" height="260" alt="3"></a>
174
+
175
+ <h2><font color="white">3</font></h2>
176
+
177
+ <p><font color="white">取引所 3</font></p>
178
+
179
+ </section>
180
+
181
+
182
+
183
+ </section>
184
+
185
+
186
+
187
+ <footer>
188
+
189
+ <ul>
190
+
191
+
192
+
193
+ <li>
194
+
195
+ <a href="mailto:a@gmail.com" target="_blank">
196
+
197
+ <!-- a=アンカータグ.講義13.リンクを追加-->
198
+
199
+ <!-- target="_blank"で別タブでリンク表示-->
200
+
201
+ <!-- mailを開くにはの補足説明あり@講義13-->
202
+
203
+ <img src="img/mail.png" width="20" height="20" alt="メール送信"></a>
204
+
205
+ </li>
206
+
207
+
208
+
209
+ <li>
210
+
211
+ <a href="https://" target="_blank">
212
+
213
+ <img src="img/blog.png" width="20" height="20" alt="ブログサイトへ"></a>
214
+
215
+ </li>
216
+
217
+
218
+
219
+ <li>
220
+
221
+ <a href="https://" target="_blank">
222
+
223
+ <img src="img/photos.png" width="20" height="20" alt="写真サイトへ"></a>
224
+
225
+ </li>
226
+
227
+ </ul>
228
+
229
+
230
+
231
+
232
+
233
+
234
+
235
+ <p>
236
+
237
+ <font color="white">
238
+
239
+ (c) Phis
240
+
241
+ </font>
242
+
243
+ </p>
244
+
245
+ </footer>
246
+
247
+
248
+
249
+
250
+
251
+
252
+
253
+ </body>
254
+
255
+ </html>
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+ ```css
264
+
265
+
266
+
267
+ header{
268
+
269
+ text-align: center;
270
+
271
+ /* header中央揃え*/
272
+
273
+ background-size: cover;
274
+
275
+ background-position: cover; 50% 50%
276
+
277
+ background-image: url(/img/header.png);
278
+
279
+ margin-bottom: 60px;
280
+
281
+ }
282
+
283
+ /* ヘッダー画像の選択*/
284
+
285
+
286
+
287
+
288
+
289
+ body {
290
+
291
+ background-image: url("/img/back1.png");
292
+
293
+ background-size: cover;
294
+
295
+ background-repeat: no-repeat;
296
+
297
+ background-attachment: fixed;
298
+
299
+ /* 背景固定*/
300
+
301
+ }
302
+
303
+
304
+
305
+
306
+
307
+ section{
308
+
309
+ text-align: center;
310
+
311
+ /* 全体を中央揃え*/
312
+
313
+ }
314
+
315
+
316
+
317
+ icon{
318
+
319
+ border-radius: 50%;
320
+
321
+        /* 境界を丸める.1辺の50%の比率.*/
322
+
323
+ border: floralwhite 5px solid;
324
+
325
+ /*
326
+
327
+ border-color: floralwhite
328
+
329
+ border-width: 5px
330
+
331
+ border-style: solid
332
+
333
+ これらは上記のようにborderでまとめられる。順不同。
334
+
335
+ */
336
+
337
+        /* solidは実線の意味.*/
338
+
339
+ box-shadow: 10px 10px 5px white;
340
+
341
+ }
342
+
343
+
344
+
345
+
346
+
347
+
348
+
349
+ コード
350
+
1
- ### 前提・実現したいこと
351
+ ```### 前提・実現したいこと
2
352
 
3
353
 
4
354
 
@@ -22,353 +372,9 @@
22
372
 
23
373
  ### 該当のソースコード
24
374
 
25
-
26
-
27
- 【HTMLに記述したlinkコード】
28
-
29
- <code>
30
-
31
-
32
-
33
- <!DOCTYPE html>
34
-
35
-
36
-
37
-
38
-
39
- <html lang="ja">
40
-
41
-
42
-
43
-
44
-
45
-
46
-
47
- <head>
48
-
49
- <!--headタグは、文書全体に情報を入れるためのもの-->
50
-
51
- <meta charset="utf-8">
52
-
53
- <!-- →これは文字コード-->
54
-
55
- <title>Phis よく使うサイト</title>
56
-
57
- <!-- →ブラウザのタイトル-->
58
-
59
- <link rel="icon" href="img/favicon.ico">
60
-
61
- <!-- →ブラウザのタブのアイコン-->
62
-
63
- <!-- icoの作り方は、ファビコン 作り方 で検索-->
64
-
65
- <meta name="description" content="Phisのよく使うサイトです。">
66
-
67
-
68
-
69
- <link rel="stylesheet" href="css/css02.css" type="text/css">
70
-
71
-
72
-
73
- <!-- linkタグにより、cssを別ファイルで管理-->
74
-
75
-
76
-
77
- </head>
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
- <body>
86
-
87
-
88
-
89
- <header>
90
-
91
- <!-- header headタグと混同しやすい-->
92
-
93
- <img src="img/header.png">
94
-
95
- <nav>
96
-
97
- <!-- navタグ=文書のナビゲーションですという意味-->
98
-
99
- <ul>
100
-
101
- <!-- ul、ol、liの説明はHTML12回講義-->
102
-
103
- <li>
104
-
105
- <a href="%E6%9A%97%E5%8F%B7%E8%B3%87%E7%94%A3%E3%80%80%E3%
106
-
107
- 82%88%E3%81%8F%E4%BD%BF%E3%81%86%E3%82%B5%E3%82%A4%E3%83%88.html">
108
-
109
- <!-- 講義14.ページ内の移動-->
110
-
111
- <font color="white">
112
-
113
- HOME
114
-
115
- </font>
116
-
117
- </a>
118
-
119
- </li>
120
-
121
-
122
-
123
- <li>
124
-
125
- <a href="02ABOUT.html">
126
-
127
- <!-- 移動リンクの作成-->
128
-
129
- <font color="white">
130
-
131
- ABOUT
132
-
133
- </font>
134
-
135
- </a>
136
-
137
- </li>
138
-
139
- </ul>
140
-
141
- </nav>
142
-
143
- </header>
144
-
145
-
146
-
147
-
148
-
149
- <section>
150
-
151
- <!-- sectionタグで括ると個別で意味を持たせることができる。-->
152
-
153
- <section>
154
-
155
-
156
-
157
- <br>
158
-
159
- <img src="img/Phis.png" width="160" height="160" alt="アイコン" class="icon">
160
-
161
- <h1><font color="white">Phis</font></h1>
162
-
163
- <p><font color="white">ルーティーン</font></p>
164
-
165
- <br>
166
-
167
-
168
-
169
- <section>
170
-
171
- <a href="https://"target="_blank" class="icon">
172
-
173
- <img src="img/1.png" width="400" height="260" alt="1"></a>
174
-
175
- <h2><font color="white">1</font></h2>
176
-
177
- <p><font color="white">取引所 1</font></p>
178
-
179
- </section>
180
-
181
-
182
-
183
- <section>
184
-
185
- <a href="https://"target="_blank" class="icon">
186
-
187
- <img src="img/2.png" width="400" height="260" alt="2"></a>
188
-
189
- <h2><font color="white">2</font></h2>
190
-
191
- <p><font color="white">取引所 2</font></p>
192
-
193
- </section>
194
-
195
-
196
-
197
- <section>
198
-
199
- <a href="https://jp."target="_blank" class="icon">
200
-
201
- <img src="img/3.png" width="400" height="260" alt="3"></a>
202
-
203
- <h2><font color="white">3</font></h2>
204
-
205
- <p><font color="white">取引所 3</font></p>
206
-
207
- </section>
208
-
209
375
 
210
376
 
211
- </section>
377
+
212
-
213
-
214
-
215
- <footer>
216
-
217
- <ul>
218
-
219
-
220
-
221
- <li>
222
-
223
- <a href="mailto:a@gmail.com" target="_blank">
224
-
225
- <!-- a=アンカータグ.講義13.リンクを追加-->
226
-
227
- <!-- target="_blank"で別タブでリンク表示-->
228
-
229
- <!-- mailを開くにはの補足説明あり@講義13-->
230
-
231
- <img src="img/mail.png" width="20" height="20" alt="メール送信"></a>
232
-
233
- </li>
234
-
235
-
236
-
237
- <li>
238
-
239
- <a href="https://" target="_blank">
240
-
241
- <img src="img/blog.png" width="20" height="20" alt="ブログサイトへ"></a>
242
-
243
- </li>
244
-
245
-
246
-
247
- <li>
248
-
249
- <a href="https://" target="_blank">
250
-
251
- <img src="img/photos.png" width="20" height="20" alt="写真サイトへ"></a>
252
-
253
- </li>
254
-
255
- </ul>
256
-
257
-
258
-
259
-
260
-
261
-
262
-
263
- <p>
264
-
265
- <font color="white">
266
-
267
- (c) Phis
268
-
269
- </font>
270
-
271
- </p>
272
-
273
- </footer>
274
-
275
-
276
-
277
-
278
-
279
-
280
-
281
- </body>
282
-
283
- </html>
284
-
285
-
286
-
287
-
288
-
289
-
290
-
291
- 【cssに記述しているコード】
292
-
293
- <code>
294
-
295
-
296
-
297
- header{
298
-
299
- text-align: center;
300
-
301
- /* header中央揃え*/
302
-
303
- background-size: cover;
304
-
305
- background-position: cover; 50% 50%
306
-
307
- background-image: url(/img/header.png);
308
-
309
- margin-bottom: 60px;
310
-
311
- }
312
-
313
- /* ヘッダー画像の選択*/
314
-
315
-
316
-
317
-
318
-
319
- body {
320
-
321
- background-image: url("/img/back1.png");
322
-
323
- background-size: cover;
324
-
325
- background-repeat: no-repeat;
326
-
327
- background-attachment: fixed;
328
-
329
- /* 背景固定*/
330
-
331
- }
332
-
333
-
334
-
335
-
336
-
337
- section{
338
-
339
- text-align: center;
340
-
341
- /* 全体を中央揃え*/
342
-
343
- }
344
-
345
-
346
-
347
- icon{
348
-
349
- border-radius: 50%;
350
-
351
-        /* 境界を丸める.1辺の50%の比率.*/
352
-
353
- border: floralwhite 5px solid;
354
-
355
- /*
356
-
357
- border-color: floralwhite
358
-
359
- border-width: 5px
360
-
361
- border-style: solid
362
-
363
- これらは上記のようにborderでまとめられる。順不同。
364
-
365
- */
366
-
367
-        /* solidは実線の意味.*/
368
-
369
- box-shadow: 10px 10px 5px white;
370
-
371
- }
372
378
 
373
379
 
374
380
 

1

HTMLとCSSの全コードを載せました。URLやメールアドレスは念のため省略させていただきました。

2019/06/18 16:07

投稿

hare8008
hare8008

スコア10

test CHANGED
File without changes
test CHANGED
@@ -26,12 +26,272 @@
26
26
 
27
27
  【HTMLに記述したlinkコード】
28
28
 
29
+ <code>
30
+
31
+
32
+
33
+ <!DOCTYPE html>
34
+
35
+
36
+
37
+
38
+
39
+ <html lang="ja">
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+ <head>
48
+
49
+ <!--headタグは、文書全体に情報を入れるためのもの-->
50
+
51
+ <meta charset="utf-8">
52
+
53
+ <!-- →これは文字コード-->
54
+
55
+ <title>Phis よく使うサイト</title>
56
+
57
+ <!-- →ブラウザのタイトル-->
58
+
59
+ <link rel="icon" href="img/favicon.ico">
60
+
61
+ <!-- →ブラウザのタブのアイコン-->
62
+
63
+ <!-- icoの作り方は、ファビコン 作り方 で検索-->
64
+
65
+ <meta name="description" content="Phisのよく使うサイトです。">
66
+
67
+
68
+
29
- <link rel="stylesheet" href="css/css02.css" type="text/css">
69
+ <link rel="stylesheet" href="css/css02.css" type="text/css">
70
+
71
+
72
+
73
+ <!-- linkタグにより、cssを別ファイルで管理-->
74
+
75
+
76
+
77
+ </head>
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+ <body>
86
+
87
+
88
+
89
+ <header>
90
+
91
+ <!-- header headタグと混同しやすい-->
92
+
93
+ <img src="img/header.png">
94
+
95
+ <nav>
96
+
97
+ <!-- navタグ=文書のナビゲーションですという意味-->
98
+
99
+ <ul>
100
+
101
+ <!-- ul、ol、liの説明はHTML12回講義-->
102
+
103
+ <li>
104
+
105
+ <a href="%E6%9A%97%E5%8F%B7%E8%B3%87%E7%94%A3%E3%80%80%E3%
106
+
107
+ 82%88%E3%81%8F%E4%BD%BF%E3%81%86%E3%82%B5%E3%82%A4%E3%83%88.html">
108
+
109
+ <!-- 講義14.ページ内の移動-->
110
+
111
+ <font color="white">
112
+
113
+ HOME
114
+
115
+ </font>
116
+
117
+ </a>
118
+
119
+ </li>
120
+
121
+
122
+
123
+ <li>
124
+
125
+ <a href="02ABOUT.html">
126
+
127
+ <!-- 移動リンクの作成-->
128
+
129
+ <font color="white">
130
+
131
+ ABOUT
132
+
133
+ </font>
134
+
135
+ </a>
136
+
137
+ </li>
138
+
139
+ </ul>
140
+
141
+ </nav>
142
+
143
+ </header>
144
+
145
+
146
+
147
+
148
+
149
+ <section>
150
+
151
+ <!-- sectionタグで括ると個別で意味を持たせることができる。-->
152
+
153
+ <section>
154
+
155
+
156
+
157
+ <br>
158
+
159
+ <img src="img/Phis.png" width="160" height="160" alt="アイコン" class="icon">
160
+
161
+ <h1><font color="white">Phis</font></h1>
162
+
163
+ <p><font color="white">ルーティーン</font></p>
164
+
165
+ <br>
166
+
167
+
168
+
169
+ <section>
170
+
171
+ <a href="https://"target="_blank" class="icon">
172
+
173
+ <img src="img/1.png" width="400" height="260" alt="1"></a>
174
+
175
+ <h2><font color="white">1</font></h2>
176
+
177
+ <p><font color="white">取引所 1</font></p>
178
+
179
+ </section>
180
+
181
+
182
+
183
+ <section>
184
+
185
+ <a href="https://"target="_blank" class="icon">
186
+
187
+ <img src="img/2.png" width="400" height="260" alt="2"></a>
188
+
189
+ <h2><font color="white">2</font></h2>
190
+
191
+ <p><font color="white">取引所 2</font></p>
192
+
193
+ </section>
194
+
195
+
196
+
197
+ <section>
198
+
199
+ <a href="https://jp."target="_blank" class="icon">
200
+
201
+ <img src="img/3.png" width="400" height="260" alt="3"></a>
202
+
203
+ <h2><font color="white">3</font></h2>
204
+
205
+ <p><font color="white">取引所 3</font></p>
206
+
207
+ </section>
208
+
209
+
210
+
211
+ </section>
212
+
213
+
214
+
215
+ <footer>
216
+
217
+ <ul>
218
+
219
+
220
+
221
+ <li>
222
+
223
+ <a href="mailto:a@gmail.com" target="_blank">
224
+
225
+ <!-- a=アンカータグ.講義13.リンクを追加-->
226
+
227
+ <!-- target="_blank"で別タブでリンク表示-->
228
+
229
+ <!-- mailを開くにはの補足説明あり@講義13-->
230
+
231
+ <img src="img/mail.png" width="20" height="20" alt="メール送信"></a>
232
+
233
+ </li>
234
+
235
+
236
+
237
+ <li>
238
+
239
+ <a href="https://" target="_blank">
240
+
241
+ <img src="img/blog.png" width="20" height="20" alt="ブログサイトへ"></a>
242
+
243
+ </li>
244
+
245
+
246
+
247
+ <li>
248
+
249
+ <a href="https://" target="_blank">
250
+
251
+ <img src="img/photos.png" width="20" height="20" alt="写真サイトへ"></a>
252
+
253
+ </li>
254
+
255
+ </ul>
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+ <p>
264
+
265
+ <font color="white">
266
+
267
+ (c) Phis
268
+
269
+ </font>
270
+
271
+ </p>
272
+
273
+ </footer>
274
+
275
+
276
+
277
+
278
+
279
+
280
+
281
+ </body>
282
+
283
+ </html>
284
+
285
+
286
+
287
+
30
288
 
31
289
 
32
290
 
33
291
  【cssに記述しているコード】
34
292
 
293
+ <code>
294
+
35
295
 
36
296
 
37
297
  header{