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