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