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