Use on the webTotal Use [ 4493 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/d7124a129bc8a3fc92647cf2c483054d?family=Typoster+Italic" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/d7124a129bc8a3fc92647cf2c483054d?family=Typoster+Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Typoster Italic";
src: url("https://db.onlinewebfonts.com/t/d7124a129bc8a3fc92647cf2c483054d.eot");
src: url("https://db.onlinewebfonts.com/t/d7124a129bc8a3fc92647cf2c483054d.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/d7124a129bc8a3fc92647cf2c483054d.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/d7124a129bc8a3fc92647cf2c483054d.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/d7124a129bc8a3fc92647cf2c483054d.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/d7124a129bc8a3fc92647cf2c483054d.svg#Typoster Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "Typoster Italic";