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