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