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