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