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