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