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