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