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