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