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