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