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