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