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