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