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