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