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