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