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