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