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