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