LoginSignup
1
0

More than 5 years have passed since last update.

サイトにフォントを追加してみた件

Last updated at Posted at 2019-02-18

やってみること

厨二っぽいフォントを使って何か作りたいと思ったので稲塚春さんのMagicRingというフォントを使ってサイトを作る!
今回はとりあえずダウンロードしてきたフォントをCSSで指定できるようにします!

内容

準備

ここから稲塚春さんのMagicRingを頂きました。
これを適当な場所に解凍しておきます。(作るhtmlと一緒のディレクトリのほうが指定が楽!)

追加してみる

index.html
<!DOCTYPE html>
<html lang=ja>
  <head>
    <meta charset="utf-8">
    <title>font_test</title>
    <style media="screen">
      @font-face {
        font-family: 'magicring'; <!--使用する名前を決める-->
        src: url('./MagicRing.ttf');<!--fontファイルのあるところを指定-->
      }
      h1{
        font-family: "magicring";
      }
      h1:hover{
        color:red;
      }
    </style>
  </head>
  <body>
    <h1>hogehoge</h1>
  </body>
</html>

SnapCrab_NoName_2019-2-18_22-16-44_No-00.png
↑適用前
↓適用後

SnapCrab_NoName_2019-2-18_22-16-30_No-00.png

こんなかんじで出来ました!

遊んでみた

厨二心をそそられたのでこんな装飾をつけてみました。
厨二ページ

以上です。

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