Use on the webTotal Use [ 3411 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/6e3bdf1bf2537e2e53db92373d9e615e?family=I+am+an+actual+Train%2C+believe+it+or+not%2C+believe+it+or+not" 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/6e3bdf1bf2537e2e53db92373d9e615e?family=I+am+an+actual+Train%2C+believe+it+or+not%2C+believe+it+or+not);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "I am an actual Train, believe it or not, believe it or not";
src: url("https://db.onlinewebfonts.com/t/6e3bdf1bf2537e2e53db92373d9e615e.eot");
src: url("https://db.onlinewebfonts.com/t/6e3bdf1bf2537e2e53db92373d9e615e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/6e3bdf1bf2537e2e53db92373d9e615e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/6e3bdf1bf2537e2e53db92373d9e615e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/6e3bdf1bf2537e2e53db92373d9e615e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/6e3bdf1bf2537e2e53db92373d9e615e.svg#I am an actual Train, believe it or not, believe it or not")format("svg");
}
2CSS rules to specify fonts
font-family: "I am an actual Train, believe it or not, believe it or not";