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