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