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