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