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