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