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