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