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