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