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