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