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