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