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