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