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