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