質問編集履歴
1
インデントし直し再掲載致します。
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,59 +6,61 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
+
```html
|
10
|
+
|
9
11
|
<!DOCTYPE html>
|
10
12
|
|
11
13
|
<html lang="ja">
|
12
14
|
|
13
|
-
|
15
|
+
<head>
|
14
16
|
|
15
|
-
|
17
|
+
<meta charset="utf-8">
|
16
18
|
|
17
|
-
|
19
|
+
<title>WCB Cafe</title>
|
18
20
|
|
19
|
-
|
21
|
+
<meta name="description" content="ブレンドコーヒーとヘルシーなオーガニック
|
20
22
|
|
21
|
-
|
23
|
+
フードを提供するカフェ">
|
22
24
|
|
23
25
|
|
24
26
|
|
25
27
|
<!-- CSS -->
|
26
28
|
|
27
|
-
|
29
|
+
<link rel="stylesheet" href="https://unpkg.com/ress/dist/ress.min.css">
|
28
30
|
|
29
|
-
|
31
|
+
<link href="https://fonts.googleapis.com/css2?family=Philosopher" href="stylesheet">
|
30
32
|
|
31
|
-
|
33
|
+
</head>
|
32
34
|
|
33
35
|
<body>
|
34
36
|
|
35
|
-
|
37
|
+
<header class="page-header">
|
36
38
|
|
37
|
-
|
39
|
+
<h1><a href="index.html"><img class="logo" src="images/logo.svg" alt="WCBカフェホーム"></a></h1>
|
38
40
|
|
39
|
-
|
41
|
+
<nav>
|
40
42
|
|
41
|
-
|
43
|
+
<ul class="main-nav">
|
42
44
|
|
43
|
-
|
45
|
+
<li><a href="news.html">News</a></li>
|
44
46
|
|
45
|
-
|
47
|
+
<li><a href="menu.html">Menu</a></li>
|
46
48
|
|
47
|
-
|
49
|
+
<li><a href="contact.html">Contact</a></li>
|
48
50
|
|
49
|
-
|
51
|
+
</ul>
|
50
52
|
|
51
|
-
|
53
|
+
</nav>
|
52
54
|
|
53
|
-
|
55
|
+
</header>
|
54
56
|
|
55
|
-
</body>
|
57
|
+
</body>
|
58
|
+
|
59
|
+
```
|
56
60
|
|
57
61
|
|
58
62
|
|
59
|
-
|
63
|
+
```CSS
|
60
|
-
|
61
|
-
|
62
64
|
|
63
65
|
@charset "UTF-8";
|
64
66
|
|
@@ -88,6 +90,12 @@
|
|
88
90
|
|
89
91
|
max-width: 100%;
|
90
92
|
|
93
|
+
```
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
91
99
|
}
|
92
100
|
|
93
101
|
![イメージ説明](f372ed4b45eb2060470e8309b7dd62eb.png)
|