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