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