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