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