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