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