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