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