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