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