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