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