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