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