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