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