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