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