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