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