Use on the webTotal Use [ 5753 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/96875a9fe0adf6e3de5e6447b0447bf8?family=LCD+AT%26T+Phone+Time%2FDate" 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/96875a9fe0adf6e3de5e6447b0447bf8?family=LCD+AT%26T+Phone+Time%2FDate);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "LCD AT&T Phone Time/Date";
src: url("https://db.onlinewebfonts.com/t/96875a9fe0adf6e3de5e6447b0447bf8.eot");
src: url("https://db.onlinewebfonts.com/t/96875a9fe0adf6e3de5e6447b0447bf8.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/96875a9fe0adf6e3de5e6447b0447bf8.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/96875a9fe0adf6e3de5e6447b0447bf8.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/96875a9fe0adf6e3de5e6447b0447bf8.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/96875a9fe0adf6e3de5e6447b0447bf8.svg#LCD AT&T Phone Time/Date")format("svg");
}
2CSS rules to specify fonts
font-family: "LCD AT&T Phone Time/Date";