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