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