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