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