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