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