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