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