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