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