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