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