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