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