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