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