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