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