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