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