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