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