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