回答編集履歴

1

内容の間違いに気づいたので修正

2019/04/23 01:14

投稿

aKusano
aKusano

スコア3763

test CHANGED
@@ -8,20 +8,18 @@
8
8
 
9
9
  というディレクトリ構成になっているんですよね?
10
10
 
11
- であれば
11
+ であればとりあえずパス指定が間違ってます。
12
+
13
+ `../css/stylesheet.css`ではなく、`css/stylesheet.css`です。
12
14
 
13
15
 
14
16
 
15
- `<link src="../css/stylesheet.css" rel="stylesheet.css">`
17
+ あとcss読み込みのコード書式が違います。
16
18
 
17
19
 
18
20
 
19
- ではなく
21
+ `<link href="css/stylesheet.css" rel="stylesheet">`
20
22
 
21
23
 
22
24
 
23
- `<link src="css/stylesheet.css" rel="stylesheet.css">`
24
-
25
-
26
-
27
- としてください
25
+ です