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