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