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