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