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