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