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