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