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