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