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