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