Skip to content

Latest commit

 

History

History
57 lines (47 loc) · 2.99 KB

README.md

File metadata and controls

57 lines (47 loc) · 2.99 KB

grass flower font

grass flower is a custom font that I created by using Calligraphr. Calligraphr is a website that allows users to create their own custom fonts at a free cost. I learned about this website thanks to my coworkers. I also used Font Squirrel that generates webfont for free. For more detailed tutorial for custom fonts, please check out this article. Hope you enjoy this and perhaps have fun making your own as well 🎈

Why the font is named as 'grass flower'

I named it after one of my favourite Korean poems, 풀꽃(pulkkot) meaning 'grass flower'.

How to install (.otf file)

Windows:

  1. After downloading the font file on your computer, right-click the file and select Install.
  2. When the font installation is complete, you can use the font.

Mac:

  1. After downloading the font file on your computer, double-click the file and select Install Font.
  2. When the font installation is complete, you can use the font.

Linux:

  1. After downloading the font file on your computer, double-click the file and select Install on top right corner.
  2. When the font installation is complete, you can use the font.

How to use grass-flower font for your website

  1. After downloading the font files on your computer, upload the font files in webfont/ (ex: .woff, .woff2, stylesheet.css) in this repository to your website.

  2. Open stylesheet.css file that has the following code:

    @font-face {
        font-family: 'grass-flower';
        src: url('grass-flower-webfont.woff2') format('woff2'),
             url('grass-flower-webfont.woff') format('woff');
        font-weight: normal;
        font-style: normal;
    }
  3. Replace 'grass-flower-webfont.woff' and 'grass-flower-webfont.woff2' inside url() with the location of the files on your server.

  4. After updating stylesheet.css file, you can include it on your HTML document. You can put stylesheet.css before any of your CSS.

    Example:

    ...
    <link rel="stylesheet" href="path to stylesheet.css for your website" type="text/css" charset="utf-8">
    <link rel="stylesheet" href="path to main.css for your website" type="text/css" charset="utf-8">
    ...
  5. Then, you can use grass-flower font in your main CSS file.

    Example:

    font-family: 'grass-flower', serif;

Example

example

License

This font software is licensed under the SIL Open Font License, Version 1.1. This means that the font can be "used, studied, modified and redistributed freely as long as they are not sold by themselves". More information is available at http://scripts.sil.org/OFL.