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