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