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