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