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