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