質問編集履歴

1

コードを提示しました

2021/08/23 01:40

投稿

cutegirl
cutegirl

スコア9

test CHANGED
File without changes
test CHANGED
@@ -31,3 +31,57 @@
31
31
 
32
32
 
33
33
  もしわかる方おられましたら、教えてください_| ̄|○
34
+
35
+
36
+
37
+ ```HTML
38
+
39
+ <!DOCTYPE html>
40
+
41
+ <html lang="ja">
42
+
43
+ <head>
44
+
45
+ <meta charset="UTF-8">
46
+
47
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
48
+
49
+ <title>タイトル</title>
50
+
51
+ <script src="https://kit.fontawesome.com/fac725c84d.js" crossorigin="anonymous"></script>
52
+
53
+ <link rel="stylesheet" href="./css/html5reset-1.6.1.css">
54
+
55
+ <link rel="stylesheet" href="./css/style.css">
56
+
57
+ </head>
58
+
59
+ <body>
60
+
61
+ <p class="test">テストです</p>
62
+
63
+ </body>
64
+
65
+ </html>
66
+
67
+ ```
68
+
69
+
70
+
71
+ ```CSS
72
+
73
+ @charset "utf-8";
74
+
75
+
76
+
77
+ .test::after{
78
+
79
+ font-family: "Font Awesome 5 Free";
80
+
81
+ font-weight: bold;
82
+
83
+ content: "\f59e";
84
+
85
+ }
86
+
87
+ ```