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