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