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