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