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