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