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