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