【Java】Font Awesome

概要

HTMLにでアイコンフォントを簡単に導入することができるサービス

使い方

方法1)ダウンロードしたファイルを使用
方法2)CDNを使用

ダウンロードしたファイルを使用

1)ファイルをダウンロードする
Font Awesome
Start for Freeを押下
f:id:vist764:20200329023131p:plain:w500
Downloadを押下
f:id:vist764:20200329031610p:plain:w500
Download Font Awesome Free for the Webを押下
f:id:vist764:20200329031921p:plain:w500
2)ファイルを配置
f:id:vist764:20200329033350p:plain:w300
3)コードを記述

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
  <head>
    <meta charset="UTF-8" />
    <title>サンプル</title>
    <link rel="stylesheet" href="../static/font-awesome/css/all.css">
  </head>
  <body>
  <i class="fab fa-amazon"></i>
  </body>
</html>

CDNを使用

1)リンクをHTMLのheadに記述

 <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">

2)使いたいアイコンを検索し、コードを取得
 Font Awesome
Start Using This Iconを押下
f:id:vist764:20200329022325p:plain:w500
コードをコピー
f:id:vist764:20200329034851p:plain:w500
3)コードをHTMLに張り付け

<html xmlns:th="http://www.thymeleaf.org">
  <head>
    <meta charset="UTF-8" />
    <title>サンプル</title>
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
  </head>
  <body>
  <i class="fab fa-amazon"></i>
  </body>
</html>