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