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