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