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