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