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