質問編集履歴

1

書式の改善

2020/04/08 05:06

投稿

Masakun_exe
Masakun_exe

スコア13

test CHANGED
File without changes
test CHANGED
@@ -5,3 +5,73 @@
5
5
  これでしばらく悩んでいます。
6
6
 
7
7
  よければ指摘お願いします!
8
+
9
+
10
+
11
+
12
+
13
+ <!doctype html>
14
+
15
+ <html lang="ja">
16
+
17
+ <head>
18
+
19
+ <meta charset="UTF-8">
20
+
21
+ <title>practice</title>
22
+
23
+ <link rel="stylesheet" href="../CSS/masablog.css">
24
+
25
+ </head>
26
+
27
+
28
+
29
+
30
+
31
+ <body>
32
+
33
+ <header>
34
+
35
+ <h1>Masablog</h1>
36
+
37
+ <div class="container-1">
38
+
39
+ <ul>
40
+
41
+ <li class="item">依頼</li>
42
+
43
+ <li class="item">相談</li>
44
+
45
+ <li class="item">その他</li>
46
+
47
+ </ul>
48
+
49
+ </div>
50
+
51
+ </header>
52
+
53
+ </body>
54
+
55
+ </html>
56
+
57
+
58
+
59
+
60
+
61
+ CSS
62
+
63
+
64
+
65
+ @charset "UTF-8";
66
+
67
+ .container-1 ul {
68
+
69
+ display: flex;
70
+
71
+ }
72
+
73
+ body{
74
+
75
+ color: red;
76
+
77
+ }