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