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