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