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