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