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