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