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