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