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