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