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