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