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