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