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