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