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