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