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