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