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