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?

More than 3 years have passed since last update.

Railsでちょっとしたアイコンを使いたい

Posted at

#はじめに
 ちょっとお洒落にデザインしたかったので、アイコンを使ってみた。
##Font Awesome
 無料で使えるアイコンがたくさん揃っている。Railsでも使う事ができる。

##使えるまでの準備

###1. Gemを記述

Gemfile
gem 'font-awesome-rails'

ファイルの一番下に追記する。

###2. インストール
 ターミナルで、

bundle install

###3. ビューファイルで使えるように読み込ませる

app/views/layouts/application.html.erb
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.9.0/css/all.css">

<head>タグの中に記述する。

##使い方
公式サイトから使いたいアイコンを選び、

<i class="fa fa-アイコン名"></i>

ヘルパーメソッドでも使うことができる。

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?