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