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