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