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