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