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