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