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