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