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