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