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