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