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