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