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