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