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