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