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