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