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