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