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