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