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