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