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