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