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