Skip to content

Instantly share code, notes, and snippets.

@marorika
Last active April 30, 2019 13:50
Show Gist options
  • Save marorika/18c66cbae853eb0ca16fac8909e14d1e to your computer and use it in GitHub Desktop.
Save marorika/18c66cbae853eb0ca16fac8909e14d1e to your computer and use it in GitHub Desktop.
<!-- 「Font Awesome 4」 -->
<html>
<head>
・・・
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
・・・
</head>
<body>
・・・
</body>
</html>
<!-- ↓↓↓↓↓ 以下のように修正 ↓↓↓↓↓-->
<!-- 「Font Awesome 4」から「Font Awesome 5」へ -->
<html>
<head>
・・・
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/v4-shims.css">
・・・
</head>
<body>
・・・
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment