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