Any other web fonts options available instead of Google fonts (library)
You want use cursive fonts or stylish fonts for the web, so web required some type of fonts as: " .ttf, .otf, .eot, .woff and .svg " because every browser not supported same type font. Nowadays all latest browser supported TTF/OTF but if any system not using the updated browser so your fonts will not show good and font will show default fonts as your system fonts. I have two techniques one is you can call font from the URL as src and define your font family name as you wish as given in the example:
@font-face {
font-family: sheo;
src: url(semicursivegut.ttf);
}
.anyCustomFonts{
font-family: sheo;
font-size: 100px;
}
<div class="anyCustomFonts">How to convert custom
fonts?</div>
And the second technique is that convert custom font for the web fonts.
If you want to convert your chose font and then go to the website "http://www.font2web.com/" and upload your choose fonts but remember chose font should be in " .ttf (TrueType Font) OR .otf (OpenType Font) file format" and then use convert button. After then you will found a zip folder with the demo: how to use the font. The last one is the best option that you can use Google fonts (Library).
No comments:
Note: Only a member of this blog may post a comment.