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