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