LoginSignup
1
0

More than 1 year has passed since last update.

超簡単!Railsでファビコンを設定してサイトをおしゃれにしよう

Posted at

ファビコンを使って手軽にサイトをおしゃれにできたのでメモ感覚で投稿します。

ファビコンとは?

検索したときのタブの左側にある小さなアイコンです!
手軽に作れてサイトを装飾できるのでとてもおすすめです!

実装

やることは2つだけ!
1 ファビコンを作成
2 HTMLファイルに記述 のみです!

ファビコンを作成

私は以下のサイトを参照させていただきました

HTMLファイルに記述

作成したアイコンを開発環境に保存した後に

application.html.erb
<head>
 #省略
  <%= favicon_link_tag('保存したアイコンのファイル名') %>
</head>

を記述
これだけでファビコンが表示されました!
ご参考になれば幸いです。

1
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
1
0