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