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