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