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