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