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