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