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