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