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