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