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 🎈
I named it after one of my favourite Korean poems, 풀꽃(pulkkot) meaning 'grass flower'.
- After downloading the font file on your computer, right-click the file and select Install.
- When the font installation is complete, you can use the font.
- After downloading the font file on your computer, double-click the file and select Install Font.
- When the font installation is complete, you can use the font.
- After downloading the font file on your computer, double-click the file and select Install on top right corner.
- When the font installation is complete, you can use the font.
-
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. -
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; }
-
Replace
'grass-flower-webfont.woff'
and'grass-flower-webfont.woff2'
insideurl()
with the location of the files on your server. -
After updating
stylesheet.css
file, you can include it on your HTML document. You can putstylesheet.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"> ...
-
Then, you can use grass-flower font in your main CSS file.
Example:
font-family: 'grass-flower', serif;
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.