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