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