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