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