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