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