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