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