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