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