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