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