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