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