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