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