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