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