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