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