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