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