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