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