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