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