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