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