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