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