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