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