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