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