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