質問編集履歴

1

コード追加しました

2019/01/22 12:10

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -5,3 +5,135 @@
5
5
 
6
6
 
7
7
  原因を教えていただけると助かります・・・
8
+
9
+
10
+
11
+ ```
12
+
13
+ <!DOCTYPE html>
14
+
15
+ <html>
16
+
17
+
18
+
19
+ <head>
20
+
21
+ <meta charset="utf-8">
22
+
23
+ <title>Creative Cooperation</title>
24
+
25
+ <style type="text/css">
26
+
27
+ h1{
28
+
29
+ margin: 40px auto;
30
+
31
+ padding-top: 30px;
32
+
33
+ clear: both;
34
+
35
+ font-size: 60px;
36
+
37
+ }
38
+
39
+ h2{
40
+
41
+ margin-top: 40px;
42
+
43
+ }
44
+
45
+ .header{
46
+
47
+ background-color: gainsboro;
48
+
49
+ color: white;
50
+
51
+ }
52
+
53
+ .header-logo{
54
+
55
+ font-size: 30px;
56
+
57
+ }
58
+
59
+ .main{
60
+
61
+ width: 100%;
62
+
63
+ }
64
+
65
+ .catch{
66
+
67
+ font-size: 50px;
68
+
69
+ margin: 0 auto;
70
+
71
+ }
72
+
73
+ .header-contents{
74
+
75
+ float: right;
76
+
77
+ }
78
+
79
+ .catch{
80
+
81
+ width: 100%;
82
+
83
+ margin: 0 auto;
84
+
85
+ }
86
+
87
+ .bottom{
88
+
89
+ padding: 5px 10px;
90
+
91
+ width: 40px;
92
+
93
+ margin: 40px auto;
94
+
95
+ font-size: 20px;
96
+
97
+ background-color: coral;
98
+
99
+
100
+
101
+ }
102
+
103
+ </style>
104
+
105
+ </head>
106
+
107
+ <body>
108
+
109
+ <div class="header">
110
+
111
+ <div class="header-logo">Creative Cooperation</div>
112
+
113
+ </div>
114
+
115
+ <div class="main">
116
+
117
+ <h1>あなたの「作りたい」を後押しする</h1>
118
+
119
+ <a class="catch">足りないを、補える仲間を作りませんか?</a>
120
+
121
+ <h2>本サイトでは、クリエイターのもっと作りたいを後押しするために</h2>
122
+
123
+ <h2>スキルマッチングを行っております。</h2>
124
+
125
+ <div class="bottom">登録</div>
126
+
127
+ </div>
128
+
129
+ <div class="fotter">
130
+
131
+ </div>
132
+
133
+
134
+
135
+ </body>
136
+
137
+ </html>
138
+
139
+ ```