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