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