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