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