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