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