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