質問編集履歴

1

全文追加しました。先ほどの部分だけだと問題なかったのを確認しました。全文にすると先ほどの内容のようになります。

2020/01/02 02:12

投稿

NATSUKI25783632
NATSUKI25783632

スコア5

test CHANGED
File without changes
test CHANGED
@@ -26,7 +26,127 @@
26
26
 
27
27
 
28
28
 
29
-
29
+ <!DOCTYPE html>
30
+
31
+ <html>
32
+
33
+ <head>
34
+
35
+ <meta charset="utf-8">
36
+
37
+ <title>Progate</title>
38
+
39
+ <link rel="stylesheet" href="stylesheet.css">
40
+
41
+
42
+
43
+ </head>
44
+
45
+ <body>
46
+
47
+ <!-- ここからHTMLを書き始めてください -->
48
+
49
+ <div class= header>
50
+
51
+ <div class=header-logo>Progate</div>
52
+
53
+ <div class= header-list>
54
+
55
+ <ul>
56
+
57
+ <li>プログラミングとは</li>
58
+
59
+ <li>学べるレッスン</li>
60
+
61
+ <li>お問い合わせ</li>
62
+
63
+ </ul>
64
+
65
+ </div>
66
+
67
+ </div>
68
+
69
+ <div class=main>
70
+
71
+ <div class=main-logo>
72
+
73
+ <h1>HELLO WORLD<span>.</span></h1>
74
+
75
+ <h2>プログラミングの世界へようこそ</h2>
76
+
77
+ </div>
78
+
79
+ </div>
80
+
81
+ <div class=container>
82
+
83
+ <h3>
84
+
85
+ 学べるレッスン
86
+
87
+ </h3>
88
+
89
+ <div class=contents>
90
+
91
+ <div class=contents-item>
92
+
93
+ <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/html.svg" alt="" />
94
+
95
+ <p>HTML & CSS</p>
96
+
97
+ </div>
98
+
99
+ <div class=contents-item>
100
+
101
+ <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/php.svg" alt="" />
102
+
103
+ <p>PHP</p>
104
+
105
+ </div>
106
+
107
+ <div class=contents-item>
108
+
109
+ <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/ruby.svg" alt="" />
110
+
111
+ <p>Ruby</p>
112
+
113
+ </div>
114
+
115
+ <div class=contents-item>
116
+
117
+ <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/swift.svg" alt="" />
118
+
119
+ <p>Swift</p>
120
+
121
+ </div>
122
+
123
+ </div>
124
+
125
+ <div class=contact-form>
126
+
127
+ <br clear=left>
128
+
129
+ <h3>お問い合わせ</h3>
130
+
131
+ <div class=contact-forms>
132
+
133
+ <p>メールアドレス(必須)</p>
134
+
135
+ <input>
136
+
137
+ <p>お問い合わせ内容(必須)</p>
138
+
139
+ <textarea></textarea>
140
+
141
+ <p>※必須項目は必ずご入力ください</p>
142
+
143
+ <input type="submit" name="" id="" value="返信" class=btn />
144
+
145
+ </div>
146
+
147
+ </div>
148
+
149
+ </div>
30
150
 
31
151
  <footer>
32
152
 
@@ -48,7 +168,9 @@
48
168
 
49
169
  </footer>
50
170
 
51
-
171
+ </body>
172
+
173
+ </html>
52
174
 
53
175
 
54
176
 
@@ -58,6 +180,198 @@
58
180
 
59
181
 
60
182
 
183
+ html, body,
184
+
185
+ ul, ol, li,
186
+
187
+ h1, h2, h3, h4, h5, h6, p,
188
+
189
+ form, input, div {
190
+
191
+ margin: 0;
192
+
193
+ padding: 0;
194
+
195
+ }
196
+
197
+ .header {
198
+
199
+ background-color :#26d0c9;
200
+
201
+ height :90px;
202
+
203
+
204
+
205
+ }
206
+
207
+ .header-logo {
208
+
209
+ font-size :36px;
210
+
211
+ color : white;
212
+
213
+ padding :20px 40px;
214
+
215
+ float :left;
216
+
217
+ }
218
+
219
+ body {
220
+
221
+ font-family: "Avenir Next", "Hiragino Kaku Gothic ProN W3", sans-serif;
222
+
223
+ }
224
+
225
+ .header-list {
226
+
227
+ color :#fff;
228
+
229
+
230
+
231
+ }
232
+
233
+ li {
234
+
235
+ list-style: none;
236
+
237
+ float :left;
238
+
239
+ padding :33px 20px;
240
+
241
+ }
242
+
243
+
244
+
245
+ /* ここからCSSを記述してください */
246
+
247
+ .main-logo h1 {
248
+
249
+ font-size: 140px;
250
+
251
+ padding: 100px 80px 0 80px;
252
+
253
+ }
254
+
255
+
256
+
257
+ .main-logo h2 {
258
+
259
+ font-size: 60px;
260
+
261
+ padding : 0 80px;
262
+
263
+ }
264
+
265
+
266
+
267
+ .main-logo span {
268
+
269
+ color: #ff4a4a;
270
+
271
+ }
272
+
273
+
274
+
275
+
276
+
277
+ .contents-item {
278
+
279
+ float: left;
280
+
281
+ padding: 50px 40px 30px 0;
282
+
283
+ }
284
+
285
+
286
+
287
+ .container {
288
+
289
+ padding-left: 80px;
290
+
291
+ padding-top: 100px;
292
+
293
+ }
294
+
295
+
296
+
297
+ .contents-item p {
298
+
299
+ font-size:24px;
300
+
301
+ padding-top: 30px;
302
+
303
+ }
304
+
305
+
306
+
307
+ .container h3 {
308
+
309
+ font-size:28px;
310
+
311
+ border-bottom: 2px solid #dee7ec;
312
+
313
+ padding-bottom: 15px;
314
+
315
+ }
316
+
317
+
318
+
319
+ .contact-form h3 {
320
+
321
+ font-size: 28px;
322
+
323
+ border-bottom: 2px solid #dee7ec;
324
+
325
+ padding-top: 100px;
326
+
327
+ margin-bottom: 15px;
328
+
329
+ }
330
+
331
+
332
+
333
+ input, textarea {
334
+
335
+ padding: 20px;
336
+
337
+ margin: 10px 0 30px 0;
338
+
339
+ width: 400px;
340
+
341
+ }
342
+
343
+
344
+
345
+ .contact-forms {
346
+
347
+ padding-top:50px;
348
+
349
+ margin-bottom: 100px;
350
+
351
+ }
352
+
353
+
354
+
355
+ .input value {
356
+
357
+ font-size: 18px;
358
+
359
+ }
360
+
361
+
362
+
363
+ .btn {
364
+
365
+ background-color:#dee7ec;
366
+
367
+ color: #889eab;
368
+
369
+ box-shadow: none;
370
+
371
+ }
372
+
373
+
374
+
61
375
  footer p {
62
376
 
63
377
  font-size: 32px;