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