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