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