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