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