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