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