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