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