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