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