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