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