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