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