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