Use on the webTotal Use [ 4867 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/df047b522bef53b483e74d6afc89ebea?family=Ruzicka+Freehand+LT+Std+Roman" 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/df047b522bef53b483e74d6afc89ebea?family=Ruzicka+Freehand+LT+Std+Roman);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Ruzicka Freehand LT Std Roman";
src: url("https://db.onlinewebfonts.com/t/df047b522bef53b483e74d6afc89ebea.eot");
src: url("https://db.onlinewebfonts.com/t/df047b522bef53b483e74d6afc89ebea.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/df047b522bef53b483e74d6afc89ebea.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/df047b522bef53b483e74d6afc89ebea.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/df047b522bef53b483e74d6afc89ebea.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/df047b522bef53b483e74d6afc89ebea.svg#Ruzicka Freehand LT Std Roman")format("svg");
}
2CSS rules to specify fonts
font-family: "Ruzicka Freehand LT Std Roman";