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