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