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