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