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