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