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