0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

HTML メモ

Last updated at Posted at 2025-09-11

アイコンを使う

これで<i class="fa-solid fa-briefcase"></i>のようにブリーフケースのアイコンを表示させることができる。

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
tmp.html
<body>
<div class="info-grid">
    <div class="info-box">
        <i class="fa-solid fa-hashtag icon"></i>
        <span id="player-id">N/A</span>
    </div>
    <div class="info-box">
        <i class="fa-solid fa-briefcase icon"></i>
        <span id="player-job">N/A</span>
    </div>
    <div class="info-box">
        <i class="fa-solid fa-money-bill-wave icon"></i>
        <span id="player-cash">N/A</span>
    </div>
    <div class="info-box">
        <i class="fa-solid fa-building-columns icon"></i>
        <span id="player-bank">N/A</span>
    </div>
</div>

Head

<meta charset="UTF-8">

Body

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?