質問編集履歴
1
コード全体を追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,6 +24,66 @@
|
|
24
24
|
|
25
25
|
```CSS html
|
26
26
|
|
27
|
+
<!DOCTYPE html>
|
28
|
+
|
29
|
+
<html lang="ja">
|
30
|
+
|
31
|
+
<head>
|
32
|
+
|
33
|
+
<link rel="stylesheet" href="css/style.css">
|
34
|
+
|
35
|
+
<meta charset="UTF-8">
|
36
|
+
|
37
|
+
<title>練習</title>
|
38
|
+
|
39
|
+
</head>
|
40
|
+
|
41
|
+
<body>
|
42
|
+
|
43
|
+
<header>
|
44
|
+
|
45
|
+
<img src="img/main-vsual.png">
|
46
|
+
|
47
|
+
</header>
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
<div class="desk">
|
52
|
+
|
53
|
+
<h1>デイトラとは</h1>
|
54
|
+
|
55
|
+
<section>
|
56
|
+
|
57
|
+
<div class="pic">
|
58
|
+
|
59
|
+
<img src="img/about.png">
|
60
|
+
|
61
|
+
</div>
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
<div class="desk">
|
66
|
+
|
67
|
+
<p>デイトラとは、無料で・迷わず・楽しく学べるプログラミング学習アプリです。毎月設定された課題をこなしていくだけで、未経験から30日でプログラミングが身に付きます。
|
68
|
+
|
69
|
+
1日1題30日でプロのWebエンジニアを目指しましょう。
|
70
|
+
|
71
|
+
</div>
|
72
|
+
|
73
|
+
</p>
|
74
|
+
|
75
|
+
</div>
|
76
|
+
|
77
|
+
</section>
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
<div>
|
82
|
+
|
83
|
+
<h1>コース一覧</h1>
|
84
|
+
|
85
|
+
|
86
|
+
|
27
87
|
<div class="gazo-box">
|
28
88
|
|
29
89
|
<img src="img/web_first.png" alt="" width="400px"height="200px">
|
@@ -34,11 +94,115 @@
|
|
34
94
|
|
35
95
|
</div>
|
36
96
|
|
97
|
+
<h1>お問い合わせ</h1>
|
98
|
+
|
99
|
+
<h2>さあ今日から始めよう</h2>
|
100
|
+
|
101
|
+
<button>無料で始める</button>
|
102
|
+
|
103
|
+
</body>
|
104
|
+
|
105
|
+
</html>
|
106
|
+
|
107
|
+
}
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
div {
|
112
|
+
|
113
|
+
text-align: center;
|
114
|
+
|
115
|
+
}
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
img {
|
120
|
+
|
121
|
+
padding-right: 400px;
|
122
|
+
|
123
|
+
/* padding-bottom: 300px; */
|
124
|
+
|
125
|
+
}
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
h1 {
|
130
|
+
|
131
|
+
color:darkslategray;
|
132
|
+
|
133
|
+
}
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
.section{
|
138
|
+
|
139
|
+
display:flex;
|
140
|
+
|
141
|
+
}
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
.pic{
|
146
|
+
|
147
|
+
width: 30%;
|
148
|
+
|
149
|
+
height: 30%;
|
150
|
+
|
151
|
+
}
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
.desk{
|
156
|
+
|
157
|
+
flex: 1;
|
158
|
+
|
159
|
+
margin: 100px;
|
160
|
+
|
161
|
+
}
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
.h2{
|
166
|
+
|
167
|
+
text-align:center;
|
168
|
+
|
169
|
+
padding-top:100px;
|
170
|
+
|
171
|
+
}
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
/* .pic{
|
176
|
+
|
177
|
+
max-width:100%;
|
178
|
+
|
179
|
+
height:auto;
|
180
|
+
|
181
|
+
} */
|
182
|
+
|
183
|
+
|
184
|
+
|
37
185
|
.gazo-box{
|
38
186
|
|
39
187
|
display:flex;
|
40
188
|
|
41
|
-
padding:
|
189
|
+
padding:0;
|
190
|
+
|
191
|
+
justify-content:center;
|
192
|
+
|
193
|
+
}
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
button{
|
198
|
+
|
199
|
+
text-decoration: none;
|
200
|
+
|
201
|
+
background: red;
|
202
|
+
|
203
|
+
width:100px;
|
204
|
+
|
205
|
+
height:50px;
|
42
206
|
|
43
207
|
}
|
44
208
|
|