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