質問編集履歴
1
htmlとcssのコードを書き足しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,5 +1,293 @@
|
|
1
1
|
ボタンのhoverが適用されないですどこか違えていませんか
|
2
2
|
|
3
|
+
HTML
|
4
|
+
|
5
|
+
<!DOCTYPE html>
|
6
|
+
|
7
|
+
<html>
|
8
|
+
|
9
|
+
<head>
|
10
|
+
|
11
|
+
<meta charset="utf-8">
|
12
|
+
|
13
|
+
<title>風景写真家「SNAPPRS」
|
14
|
+
|
15
|
+
official website</title>
|
16
|
+
|
17
|
+
<link href="<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet">"
|
18
|
+
|
19
|
+
<link href="css/style.css" rel="stylesheet">
|
20
|
+
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<!-- ここからbody -->
|
24
|
+
|
25
|
+
<body id="index">
|
26
|
+
|
27
|
+
<!-- ここからヘッダー -->
|
28
|
+
|
29
|
+
<header>
|
30
|
+
|
31
|
+
<div class="logo">
|
32
|
+
|
33
|
+
<a href="index.html">
|
34
|
+
|
35
|
+
<img src="images/logo.png" alt="ANAPPERS">
|
36
|
+
|
37
|
+
</a>
|
38
|
+
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<nav class="global-nav">
|
42
|
+
|
43
|
+
<ul>
|
44
|
+
|
45
|
+
<li><a href="portfolio.html">portfolio</a></li>
|
46
|
+
|
47
|
+
<li><a href="bout.html">bout.html</a></li>
|
48
|
+
|
49
|
+
<li><a href="contact.Hhhhhtml">contact</a></li>
|
50
|
+
|
51
|
+
</ul>
|
52
|
+
|
53
|
+
</nav>
|
54
|
+
|
55
|
+
</header>
|
56
|
+
|
57
|
+
<!-- ここからコンテンツ -->
|
58
|
+
|
59
|
+
<div id="wrap">
|
60
|
+
|
61
|
+
<div class="content">
|
62
|
+
|
63
|
+
<h1>Life is beautiful,<br>snap!snap!</h1>
|
64
|
+
|
65
|
+
<p>このwebサイトは、学習サンプルとして作成する「SNAPPERS」という架空写真家の
|
66
|
+
|
67
|
+
ポートフォリオサイトです。<br>チュートリアル形式でHTMLとCSS学びながら完成を目指します
|
68
|
+
|
69
|
+
楽しんで作成しましょう</p>
|
70
|
+
|
71
|
+
<p class="btn"><a href="portfolio.html">My portfolio</a></p>
|
72
|
+
|
73
|
+
</div>
|
74
|
+
|
75
|
+
</div>
|
76
|
+
|
77
|
+
<!-- ここからフッター -->
|
78
|
+
|
79
|
+
<footer>
|
80
|
+
|
81
|
+
<small>(c)2017 Hattori-studio.</small>
|
82
|
+
|
83
|
+
</footer>
|
84
|
+
|
85
|
+
</body>
|
86
|
+
|
87
|
+
</html>
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
CSS
|
92
|
+
|
93
|
+
@charset "UTF-8";
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
body{
|
98
|
+
|
99
|
+
margin: 0;
|
100
|
+
|
101
|
+
padding: 0;
|
102
|
+
|
103
|
+
background-color: #cccccc;
|
104
|
+
|
105
|
+
color: #333333;
|
106
|
+
|
107
|
+
font-size: 15px;
|
108
|
+
|
109
|
+
line-height: 2;
|
110
|
+
|
111
|
+
}
|
112
|
+
|
113
|
+
p,h1,h2,h3,h4,h5,h6{
|
114
|
+
|
115
|
+
margin-top: 0;
|
116
|
+
|
117
|
+
}
|
118
|
+
|
119
|
+
img{
|
120
|
+
|
121
|
+
vertical-align: bottom;
|
122
|
+
|
123
|
+
}
|
124
|
+
|
125
|
+
ul{
|
126
|
+
|
127
|
+
margin: 0;
|
128
|
+
|
129
|
+
padding: 0;
|
130
|
+
|
131
|
+
}
|
132
|
+
|
133
|
+
a {
|
134
|
+
|
135
|
+
color: #3583aa;
|
136
|
+
|
137
|
+
text-decoration: none;
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
a visited{
|
142
|
+
|
143
|
+
color: #788d98
|
144
|
+
|
145
|
+
}
|
146
|
+
|
147
|
+
a hover{
|
148
|
+
|
149
|
+
text-decoration: underline;
|
150
|
+
|
151
|
+
}
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
header{
|
156
|
+
|
157
|
+
width: 960px;
|
158
|
+
|
159
|
+
height: 100px;
|
160
|
+
|
161
|
+
margin: 0 auto;
|
162
|
+
|
163
|
+
}
|
164
|
+
|
165
|
+
.logo{
|
166
|
+
|
167
|
+
float: left;
|
168
|
+
|
169
|
+
margin-top: 50px;
|
170
|
+
|
171
|
+
}
|
172
|
+
|
173
|
+
.global-nav{
|
174
|
+
|
175
|
+
float: right;
|
176
|
+
|
177
|
+
margin-top: 60px;
|
178
|
+
|
179
|
+
}
|
180
|
+
|
181
|
+
.global-nav li{
|
182
|
+
|
183
|
+
float: left;
|
184
|
+
|
185
|
+
margin: 0 20px;
|
186
|
+
|
187
|
+
font-size: 20px;
|
188
|
+
|
189
|
+
list-style: none;
|
190
|
+
|
191
|
+
font-family: 'Roboto', sans-serif;
|
192
|
+
|
193
|
+
}
|
194
|
+
|
195
|
+
.global-nav li a {
|
196
|
+
|
197
|
+
color: #ffffff
|
198
|
+
|
199
|
+
}
|
200
|
+
|
201
|
+
.global-nav li a:hover {
|
202
|
+
|
203
|
+
border-bottom: 2px solid #ffffff;
|
204
|
+
|
205
|
+
padding-bottom: 3px;
|
206
|
+
|
207
|
+
text-decoration: none;
|
208
|
+
|
209
|
+
}
|
210
|
+
|
211
|
+
#wrap{
|
212
|
+
|
213
|
+
classear: both;
|
214
|
+
|
215
|
+
}
|
216
|
+
|
217
|
+
.content{
|
218
|
+
|
219
|
+
width: 960px;
|
220
|
+
|
221
|
+
margin: 0 auto;
|
222
|
+
|
223
|
+
}
|
224
|
+
|
225
|
+
footer{
|
226
|
+
|
227
|
+
text-align: center;
|
228
|
+
|
229
|
+
color: #ffffff;
|
230
|
+
|
231
|
+
padding: 20px;
|
232
|
+
|
233
|
+
}
|
234
|
+
|
235
|
+
footer small{
|
236
|
+
|
237
|
+
font-size: 12px;
|
238
|
+
|
239
|
+
}
|
240
|
+
|
241
|
+
#index h1 {
|
242
|
+
|
243
|
+
font-size: 100px;
|
244
|
+
|
245
|
+
line-height: 1;
|
246
|
+
|
247
|
+
color: #ffffff;
|
248
|
+
|
249
|
+
font-family: 'Roboto', sans-serif;
|
250
|
+
|
251
|
+
margin-bottom: 50px;
|
252
|
+
|
253
|
+
}
|
254
|
+
|
255
|
+
#index .content {
|
256
|
+
|
257
|
+
margin-top: 150px;
|
258
|
+
|
259
|
+
}
|
260
|
+
|
261
|
+
#index p{
|
262
|
+
|
263
|
+
font-size: 16px;
|
264
|
+
|
265
|
+
color: #ffffff
|
266
|
+
|
267
|
+
}
|
268
|
+
|
269
|
+
.btn a {
|
270
|
+
|
271
|
+
background-color: #009cd3;
|
272
|
+
|
273
|
+
color: #ffffff;
|
274
|
+
|
275
|
+
font-size: 20px;
|
276
|
+
|
277
|
+
font-family: 'Roboto', sans-serif;
|
278
|
+
|
279
|
+
width: 185px;
|
280
|
+
|
281
|
+
display: block;
|
282
|
+
|
283
|
+
text-align: center;
|
284
|
+
|
285
|
+
border-radius: 5px;
|
286
|
+
|
287
|
+
border: 3px solid #009cd3;
|
288
|
+
|
289
|
+
}
|
290
|
+
|
3
291
|
.dtn a:hover {
|
4
292
|
|
5
293
|
text-decoration: none;
|