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