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